mirror of
https://git.adityakumar.xyz/flakes.git
synced 2024-11-09 14:19:43 +00:00
27 lines
780 B
XML
27 lines
780 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
<IsPackable>false</IsPackable>
|
||
|
<IsPublishable>false</IsPublishable>
|
||
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Compile Include="TestProgram.fs"/>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="FsUnit" Version="5.0.0"/>
|
||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0"/>
|
||
|
<PackageReference Include="NUnit" Version="3.13.3"/>
|
||
|
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1"/>
|
||
|
<PackageReference Include="NUnit.Analyzers" Version="3.3.0"/>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\HelloWorld\HelloWorld.fsproj"/>
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|