-
-
Notifications
You must be signed in to change notification settings - Fork 307
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
103 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
name: 🐛 Bug in EF Core Power Tools | ||
description: Create a report about something that isn't working in EF Core Power Tools | ||
labels: ["customer-reported"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: |- | ||
Remember: | ||
* Please check that the [documentation](https://github.com/ErikEJ/EFCorePowerTools/wiki) does not explain the behavior you are seeing. | ||
* Please search in [closed](https://github.com/ErikEJ/EFCorePowerTools/issues?q=is%3Aissue%20state%3Aclosed) issues to check that your bug has not already been filed/fixed. | ||
* You are asking me for free support so: **A bug report without sufficient technical details and reproduction details and version information WILL BE CLOSED WITHOUT ANY FURTHER ACTION.** | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Bug description / exact reproduction steps | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: code | ||
attributes: | ||
label: Your code | ||
description: |- | ||
To fix any bug we must first reproduce it. To make this possible, please attach a small, runnable project or post a small, runnable code listing that reproduces what you are seeing. | ||
It is often impossible for us to reproduce a bug when working with only code snippets since we have to guess at the missing code. | ||
render: csharp | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: stack | ||
attributes: | ||
label: Stack traces | ||
description: |- | ||
Include the full exception message and stack trace for any exception you encounter. | ||
render: text | ||
validations: | ||
required: false | ||
- type: input | ||
id: version-efcore | ||
attributes: | ||
label: EF Core Power Tools version | ||
placeholder: |- | ||
2.6.0 | ||
validations: | ||
required: false | ||
- type: input | ||
id: version-cli | ||
attributes: | ||
label: EF Core Power Tools CLI version | ||
placeholder: |- | ||
2.6.0 | ||
validations: | ||
required: false | ||
- type: input | ||
id: version-provider | ||
attributes: | ||
label: Database provider | ||
placeholder: |- | ||
Microsoft.EntityFrameworkCore.SqlServer | ||
validations: | ||
required: false | ||
- type: input | ||
id: version-target | ||
attributes: | ||
label: Target framework | ||
placeholder: |- | ||
.NET 9.0 | ||
validations: | ||
required: false | ||
- type: input | ||
id: version-ide | ||
attributes: | ||
label: IDE | ||
placeholder: |- | ||
Visual Studio 2022 17.13 | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: Do you use T4 templates? | ||
multiple: false | ||
options: | ||
- No | ||
- Yes | ||
- type: dropdown | ||
id: handlebars | ||
attributes: | ||
label: Do you use Handlebars templates? | ||
multiple: false | ||
options: | ||
- No | ||
- Yes | ||
- type: dropdown | ||
id: dacpac | ||
attributes: | ||
label: Is a SQL Server .dacpac / Database project used? | ||
multiple: false | ||
options: | ||
- No | ||
- Yes |