Add example project

This commit is contained in:
Sven van Heugten 2026-04-27 22:51:25 +02:00
parent eed9190ddb
commit b05c2dc0a2
No known key found for this signature in database
GPG key ID: D612F88666F4F660
4 changed files with 66 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Compile Include="MutationCaseAttribute.fs" />
<Compile Include="Calculator.fs" />
<Compile Include="CalculatorTests.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>