forked from DotNetKoans/DotNetKoans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDotNetCoreKoans.csproj
29 lines (27 loc) · 1.26 KB
/
DotNetCoreKoans.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
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>A set of Koans to teach the C# language on .NET Core.</Description>
<VersionPrefix>2.0.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<NoWarn>$(NoWarn);CS0162;CS0168;CS0184;CS0219</NoWarn>
<AssemblyName>DotNetCoreKoans</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>DotNetCoreKoans</PackageId>
<PackageTags>C#;Koans;Learning</PackageTags>
<PackageLicenseUrl>https://github.com/NotMyself/DotNetCoreKoans/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/NotMyself/DotNetCoreKoans</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="microsoft.dotnet.cli.utils" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
<PackageReference Include="xunit" Version="2.3.0-beta5-build3769" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0-beta5-build3769" />
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="microsoft.dotnet.watcher.tools" Version="2.0.0" />
</ItemGroup>
<PropertyGroup>
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
</Project>