forked from DotNetKoans/DotNetKoans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDotNetKoans.csproj
28 lines (27 loc) · 1.28 KB
/
DotNetKoans.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>A set of Koans to teach the C# language on .NET.</Description>
<TargetFramework>net6.0</TargetFramework>
<NoWarn>$(NoWarn);CS0649;CS0162;CS0168;CS0184;CS0219;xUnit2015;xUnit2013</NoWarn>
<AssemblyName>DotNetKoans</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>DotNetKoans</PackageId>
<PackageTags>C#;Koans;Learning</PackageTags>
<PackageLicenseUrl>https://github.com/DotNetKoans/DotNetKoans/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/DotNetKoans/DotNetKoans</RepositoryUrl>
<RootNamespace>DotNetKoans</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="microsoft.dotnet.cli.utils" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
</Project>