Sanchime.Learn/Sanchime.Learn.fsproj

15 lines
554 B
XML

<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" />
<Compile Include="Program.fs" />
</ItemGroup>
</Project>