mirror of
https://github.com/Smaug123/FicroKanSharp
synced 2025-10-19 01:48:40 +00:00
27 lines
814 B
XML
27 lines
814 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="TestExamples.fs" />
|
|
<Compile Include="Arithmetic.fs" />
|
|
<None Include="NotWorking.fs" />
|
|
<Compile Include="Geometry.fs" />
|
|
<Compile Include="Recursive.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
<PackageReference Include="FsUnit" Version="4.1.0" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\FicroKanSharp\FicroKanSharp.fsproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|