Sanchime.Learn/Sanchime.Learn.fsproj

17 lines
641 B
XML
Raw Normal View History

2022-07-05 20:26:22 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Algrithms/Sorts/SelectSort.fs" />
<Compile Include="Algrithms/Sorts/MergeSort.fs" />
<Compile Include="Algrithms/Sorts/QuickSort.fs" />
<Compile Include="Algrithms/Sorts/InsertSort.fs" />
<Compile Include="Algrithms/Sorts/BubbleSort.fs" />
<Compile Include="Algrithms/Sorts/Test.fs" />
2022-07-06 21:15:51 +08:00
<Compile Include="Monads/FreeMonad.fs" />
<Compile Include="Monads/Test.fs" />
2022-07-05 20:26:22 +08:00
<Compile Include="Program.fs" />
</ItemGroup>
</Project>