2024-05-03 00:54:10 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<GenerateProgramFile>false</GenerateProgramFile>
|
|
|
|
<IsTestProject>true</IsTestProject>
|
|
|
|
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="ExtensionsTests.fs" />
|
|
|
|
<Compile Include="Program.fs"/>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.2">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="FsUnit" Version="6.0.0" />
|
2024-06-23 22:32:28 -04:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
|
2024-05-03 00:54:10 -04:00
|
|
|
<PackageReference Include="NUnit" Version="4.1.0" />
|
|
|
|
<PackageReference Include="NUnit.Analyzers" Version="4.2.0">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0"/>
|
2024-06-23 22:32:28 -04:00
|
|
|
<PackageReference Update="FSharp.Core" Version="8.0.300" />
|
2024-05-03 00:54:10 -04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\FsBase\FsBase.fsproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|