Skip to content

Commit db03203

Browse files
authored
Create ISSUE_TEMPLATE.md
1 parent ea05631 commit db03203

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

ISSUE_TEMPLATE.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!--
2+
3+
If you're new to AutoMapper, please ask a question on StackOverflow first and come back here if the people there consider it a bug.
4+
If you've just upgraded to 9.0, please read the upgrade guide first (https://docs.automapper.org/en/latest/9.0-Upgrade-Guide.html).
5+
Try to provide [a minimal, complete, and verifiable example](https://stackoverflow.com/help/mcve), preferably a [gist](https://gist.github.com/lbargaoanu/9c7233441c3a3413cc2b9b9ebb5964a9) that we can execute and see fail. [Here](https://gist.github.com/lbargaoanu/0cbc531306223f7ffc5468becf2642d6) is an example for ProjectTo.
6+
For feature requests, just clear out the below.
7+
-->
8+
9+
### Source/destination types
10+
11+
```csharp
12+
// Put your source/destination types here
13+
```
14+
15+
### Mapping configuration
16+
17+
```csharp
18+
// Mapper.Initialize or just the CreateMap snippet
19+
```
20+
21+
### Version: x.y.z
22+
<!--
23+
Include the major/minor version (4.2.1, 5.2.0, 6.0.2 etc)
24+
If you're using ProjectTo, also specify the EF Core or EF6 version.
25+
-->
26+
27+
### Expected behavior
28+
29+
<!-- What did you expect to happen? Or what used to happen in an older version? -->
30+
31+
### Actual behavior
32+
33+
<!-- What happened instead? -->
34+
35+
### Steps to reproduce
36+
37+
```csharp
38+
// Your calls to Mapper.Map or ProjectTo here, with source/destination objects constructed
39+
```

0 commit comments

Comments
 (0)