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-08-14 22:15:22 +08:00
|
|
|
<Compile Include="DataStructures/Lists/Link.fs"/>
|
2022-08-14 16:45:17 +08:00
|
|
|
<Compile Include="DataStructures/Trees/RedBlack.fs"/>
|
2022-07-06 21:48:36 +08:00
|
|
|
<Compile Include="Monads/ReaderMonad.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>
|