You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Create a report to help us fix something that isn't working as expected
3
+
labels: "bug :bug:"
4
+
body:
5
+
- type: markdown
6
+
attributes:
7
+
value: |
8
+
## Before you begin
9
+
10
+
🚨 **Please do not skip instructions** 🚨
11
+
12
+
This info is essential for investigating your bug report. Issues with missing information may be closed without investigation. Please make sure to look for existing issues about the same problem before opening a new one. If you're uncertain about the problem, [find or start a discussion](https://github.com/CommunityToolkit/dotnet/discussions), where you can get insight from the community regarding your issue.
13
+
- type: textarea
14
+
id: description
15
+
validations:
16
+
required: true
17
+
attributes:
18
+
label: Describe the bug
19
+
description: A clear and concise description of what the bug is.
20
+
- type: input
21
+
id: last-working-toolkit-version
22
+
attributes:
23
+
label: Regression
24
+
description: If this is a regression, what toolkit version did you last see it work?
25
+
placeholder:
26
+
validations:
27
+
required: false
28
+
- type: textarea
29
+
id: repro-steps
30
+
validations:
31
+
required: true
32
+
attributes:
33
+
label: Steps to reproduce
34
+
render: text
35
+
description: Provide steps to reproduce the issue, or let us know why it can't be reproduced (e.g. more complex setup, environment, dependencies, etc...). If you want to insert a code snippet, make sure to properly format it (add 3 backticks ` at the start and end of your code, followed by the language in use, eg. "csharp") and to remove leading whitespace in each line (if you're pasting code from another IDE where it was indented).
36
+
placeholder: |
37
+
Example repro steps:
38
+
1. Given the following environment (.NET version, framework in use, project type, VS version, etc.)
39
+
2. Paste the followin code: <SNIPPET>
40
+
3. Click on '....'
41
+
4. Scroll down to '....'
42
+
5. See error
43
+
- type: textarea
44
+
id: expected-behavior
45
+
validations:
46
+
required: true
47
+
attributes:
48
+
label: Expected behavior
49
+
description: A clear and concise description of what you expected to happen.
50
+
- type: textarea
51
+
id: screenshots
52
+
attributes:
53
+
label: Screenshots
54
+
description: If applicable, add screenshots to help explain your problem.
55
+
- type: dropdown
56
+
id: ide-version
57
+
attributes:
58
+
multiple: true
59
+
label: IDE and version
60
+
description: Check one or more of the following options
61
+
options:
62
+
- VS 2019
63
+
- VS 2022
64
+
- VS 2022 Preview
65
+
- Rider
66
+
- Other
67
+
- type: input
68
+
id: IDE-exact-build
69
+
attributes:
70
+
label: IDE version
71
+
description: What's the exact build number of your IDE? (For Visual Studio, go to Help -> About Microsoft Visual Studio)
72
+
- type: textarea
73
+
id: nuget-packages
74
+
validations:
75
+
required: true
76
+
attributes:
77
+
label: Nuget packages
78
+
description: Which NuGet packages have you used? Include the version number.
79
+
options:
80
+
- label: CommunityToolkit.Common
81
+
- label: CommunityToolkit.Diagnostics
82
+
- label: CommunityToolkit.HighPerformance
83
+
- label: CommunityToolkit.Mvvm (aka MVVM Toolkit)
84
+
- type: textarea
85
+
id: additional-context
86
+
attributes:
87
+
label: Additional context
88
+
description: Add any other context about the problem here.
89
+
- type: dropdown
90
+
id: contribution
91
+
validations:
92
+
required: true
93
+
attributes:
94
+
label: Help us help you
95
+
description: Would you like to contribute a solution to this issue?
96
+
options:
97
+
- Yes, I'd like to be assigned to work on this item.
0 commit comments