Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- # Usage (Pascal naming): ./fsharp_sln.sh FooBar
- sol=$1
- dotnet new sln -o $sol
- dotnet new console -lang F# -o $sol
- cd $sol
- dotnet sln add $sol.fsproj
- dotnet add $sol.fsproj package Newtonsoft.Json
- # References
- #
- # Get started with F# with the .NET Core CLI
- # https://docs.microsoft.com/en-us/dotnet/fsharp/get-started/get-started-command-line
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement