-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
29469f6
commit ad4f107
Showing
55 changed files
with
279 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...nFSharp.Exercises/Chapter_01/Exercises.fs → src/FPinFSharp.Chapter_01/Exercises.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace FPinFSharp.Exercises.Chapter_01 | ||
namespace FPinFSharp.Chapter_01 | ||
|
||
open System; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<RootNamespace>FPinFSharp.Chapter_01</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="Description.md" /> | ||
<Compile Include="Section_01.fs" /> | ||
<Compile Include="Section_02.fs" /> | ||
<Compile Include="Section_03.fs" /> | ||
<Compile Include="Section_04.fs" /> | ||
<Compile Include="Section_05.fs" /> | ||
<Compile Include="Section_06.fs" /> | ||
<Content Include="Section_07.md" /> | ||
<Compile Include="Section_08.fs" /> | ||
<Compile Include="Exercises.fs" /> | ||
</ItemGroup> | ||
|
||
</Project> |
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_01/Section_01_01.fs → src/FPinFSharp.Chapter_01/Section_01.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...arp.Exercises/Chapter_01/Section_01_02.fs → src/FPinFSharp.Chapter_01/Section_02.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_01/Section_01_03.fs → src/FPinFSharp.Chapter_01/Section_03.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_01/Section_01_04.fs → src/FPinFSharp.Chapter_01/Section_04.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_01/Section_01_05.fs → src/FPinFSharp.Chapter_01/Section_05.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...arp.Exercises/Chapter_01/Section_01_06.fs → src/FPinFSharp.Chapter_01/Section_06.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_01/Section_01_08.fs → src/FPinFSharp.Chapter_01/Section_08.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...nFSharp.Exercises/Chapter_02/Exercises.fs → src/FPinFSharp.Chapter_02/Exercises.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace FPinFSharp.Exercises.Chapter_02 | ||
namespace FPinFSharp.Chapter_02 | ||
|
||
open System; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<RootNamespace>FPinFSharp.Chapter_02</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="Description.md" /> | ||
<Compile Include="Section_01.fs" /> | ||
<Compile Include="Section_02.fs" /> | ||
<Compile Include="Section_03.fs" /> | ||
<Compile Include="Section_04.fs" /> | ||
<Compile Include="Section_05.fs" /> | ||
<Compile Include="Section_06.fs" /> | ||
<Compile Include="Section_07.fs" /> | ||
<Compile Include="Section_08.fs" /> | ||
<Compile Include="Section_09.fs" /> | ||
<Compile Include="Section_10.fs" /> | ||
<Compile Include="Section_11.fs" /> | ||
<Compile Include="Section_12.fs" /> | ||
<Compile Include="Exercises.fs" /> | ||
</ItemGroup> | ||
|
||
</Project> |
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_02/Section_02_01.fs → src/FPinFSharp.Chapter_02/Section_01.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_02/Section_02_02.fs → src/FPinFSharp.Chapter_02/Section_02.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_02/Section_02_03.fs → src/FPinFSharp.Chapter_02/Section_03.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_02/Section_02_04.fs → src/FPinFSharp.Chapter_02/Section_04.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_02/Section_02_05.fs → src/FPinFSharp.Chapter_02/Section_05.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_02/Section_02_06.fs → src/FPinFSharp.Chapter_02/Section_06.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_02/Section_02_07.fs → src/FPinFSharp.Chapter_02/Section_07.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_02/Section_02_08.fs → src/FPinFSharp.Chapter_02/Section_08.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_02/Section_02_09.fs → src/FPinFSharp.Chapter_02/Section_09.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_02/Section_02_10.fs → src/FPinFSharp.Chapter_02/Section_10.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_02/Section_02_11.fs → src/FPinFSharp.Chapter_02/Section_11.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...arp.Exercises/Chapter_02/Section_02_12.fs → src/FPinFSharp.Chapter_02/Section_12.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...s.UnitTests/Chapter_01/Exercises_Tests.fs → ...p.Chapter_01.UnitTests/Exercises_Tests.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.