Skip to content

Instantly share code, notes, and snippets.

@jhewlett
Created April 8, 2019 03:39
Show Gist options
  • Save jhewlett/582b3940a810d1600ea769ba063db80f to your computer and use it in GitHub Desktop.
Save jhewlett/582b3940a810d1600ea769ba063db80f to your computer and use it in GitHub Desktop.
Template for F# Coding Exercies (simple class library and test project)
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
@jhewlett
Copy link
Author

jhewlett commented Apr 8, 2019

Mainly based off of these docs, with the addition of unquote because I like using that for assertions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment