- Notifications
You must be signed in to change notification settings - Fork 196
/
Copy pathcsharp.csproj
18 lines (18 loc) · 786 Bytes
/
csharp.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<ProjectSdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<LangVersion>10</LangVersion>
</PropertyGroup>
<PropertyGroupCondition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug/net6.0/</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReferenceInclude="Microsoft.NET.Test.Sdk"Version="16.5.0" />
<PackageReferenceInclude="xunit"Version="2.4.1" />
<PackageReferenceInclude="xunit.runner.visualstudio"Version="2.4.2" />
<PackageReferenceInclude="coverlet.collector"Version="1.2.0" />
<PackageReferenceInclude="ini-parser-netstandard"Version="2.5.2" />
</ItemGroup>
</Project>