Created
April 8, 2019 03:39
-
-
Save jhewlett/582b3940a810d1600ea769ba063db80f to your computer and use it in GitHub Desktop.
Template for F# Coding Exercies (simple class library and test project)
This file contains hidden or 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
mkdir Kata | |
cd Kata | |
dotnet new sln | |
mkdir App | |
cd App | |
dotnet new classlib -lang F# | |
cd .. | |
dotnet sln add App/App.fsproj | |
mkdir Tests | |
cd Tests | |
dotnet new xunit -lang F# | |
dotnet add package unquote | |
dotnet add reference ../App/App.fsproj | |
cd .. | |
dotnet sln add Tests/Tests.fsproj |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Mainly based off of these docs, with the addition of
unquote
because I like using that for assertions.