1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<Project Sdk =" Microsoft.NET.Sdk" >
3
+
3
4
<PropertyGroup >
4
- <OutputType >Exe</OutputType >
5
- <TargetFramework >net5.0</TargetFramework >
6
- <LangVersion >preview</LangVersion >
5
+ <OutputType >Library</OutputType >
6
+ <TargetFramework >net6.0</TargetFramework >
7
+ <LangVersion >latest</LangVersion >
8
+ <TreatWarningsAsErrors >true</TreatWarningsAsErrors >
7
9
</PropertyGroup >
10
+
8
11
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
9
12
<DefineConstants >TRACE</DefineConstants >
10
13
</PropertyGroup >
14
+
11
15
<ItemGroup >
12
- <Compile Include =" Math/Abs.fs" />
13
- <Compile Include =" Math/AbsMax.fs" />
14
- <Conpile Include =" Math/AbsMin.fs" />
15
- <Compile Include =" Math/Factorial.fs" />
16
- <Compile Include =" Math/Fibonacci.fs" />
17
- <Compile Include =" Math/Perfect_Numbers.fs" />
18
- <Compile Include =" Math/Power.fs" />
19
- <Compile Include =" Sort/Bubble_Sort.fs" />
20
- <Compile Include =" Sort/Comb_Sort.fs" />
21
- <Compile Include =" Sort/Cycle_Sort.fs" />
22
- <Compile Include =" Sort/Gnome_Sort.fs" />
23
- <Compile Include =" Sort/Heap_Sort.fs" />
24
- <Compile Include =" Sort/Insertion_Sort.fs" />
25
- <Compile Include =" Sort/Merge_Sort.fs" />
26
- <Compile Include =" Sort/Pancake_Sort.fs" />
27
- <Compile Include =" Sort/Quick_Sort.fs" />
28
- <Compile Include =" Search/BinarySearch.fs" />
29
- <Compile Include =" Strings/Capitalize.fs" />
30
- <Compile Include =" Strings/CheckAnagrams.fs" />
31
- <Compile Include =" Strings/CheckPangram.fs" />
32
- <Compile Include =" Strings/IsPalindrome.fs" />
33
- <Compile Include =" Strings/JaroWinkler.fs" />
34
- <Compile Include =" Strings/KnuthMorrisPratt.fs" />
35
- <Compile Include =" Strings/LevenshteinDistance.fs" />
36
- <Compile Include =" Strings/Lower.fs" />
37
- <Compile Include =" Strings/Manacher.fs" />
38
- <Compile Include =" Strings/MinCostStringConversion.fs" />
39
- <Compile Include =" Strings/NaiveStringSearch.fs" />
40
- <Compile Include =" Strings/PrefixFunction.fs" />
41
- <Compile Include =" Strings/RabinKarp.fs" />
42
- <Compile Include =" Strings/RemoveDuplicates.fs" />
43
- <Compile Include =" Strings/ReverseLetters.fs" />
44
- <Compile Include =" Strings/ReverseWords.fs" />
45
- <Compile Include =" Strings/Split.fs" />
46
- <Compile Include =" Strings/SwapCase.fs" />
47
- <Compile Include =" Strings/Upper.fs" />
48
- <Compile Include =" Strings/WordOccurrence.fs" />
49
- <Compile Include =" Strings/ZFunction.fs" />
50
- <Compile Include =" Program.fs" />
16
+ <Compile Include =" Math/*.fs" />
17
+ <Compile Include =" Search/*.fs" />
18
+ <Compile Include =" Sort/*.fs" />
19
+ <Compile Include =" Strings/*.fs" />
51
20
</ItemGroup >
52
- </Project >
21
+
22
+ </Project >
0 commit comments