Skip to content

Commit

Permalink
Add an issue template (dotnet#2686)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdmihai authored Nov 2, 2017
1 parent b38e4ce commit f258554
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
### Steps to reproduce

Either include a project sample, attach a zipped project, or provide IDE / CLI steps to create the project and repro the behaviour. Example of a project sample:

Project file
```xml
<Project>
<PropertyGroup>
<Extension>cs</Extension>
</PropertyGroup>

<ItemGroup>
<I Include="**/*.$(Extension)"/>
</ItemGroup>

<Target Name="Build">
<Message Text="I: %(I.Identity)"/>
</Target>
</Project>
```

Directory contents:
```
/
- a.cs
- b.cs
- dir/
- c.cs
```

Command line
```
msbuild /bl
```
### Expected behavior


### Actual behavior


### Environment data
`msbuild /version` output:

OS info:

If applicable, version of the tool that invokes MSBuild (Visual Studio, dotnet CLI, etc):

0 comments on commit f258554

Please sign in to comment.