mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 13:36:29 +08:00
18 lines
586 B
XML
18 lines
586 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<RootNamespace>hello_algo</RootNamespace>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
|
|
<PackageReference Include="coverlet.collector" Version="3.1.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|