mirror of
https://github.com/NixOS/templates.git
synced 2026-01-12 17:28:25 +01:00
25 lines
714 B
XML
25 lines
714 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
<IsPublishable>false</IsPublishable>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="TestProgram.fs"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FsUnit" Version="6.0.0"/>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0"/>
|
|
<PackageReference Include="NUnit" Version="4.1.0"/>
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\HelloWorld\HelloWorld.fsproj"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|