Skip to content

Instantly share code, notes, and snippets.

@jarnaldich
Last active February 25, 2020 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jarnaldich/e79ebf736063b4c5aa4a8ee8e834ae59 to your computer and use it in GitHub Desktop.
Save jarnaldich/e79ebf736063b4c5aa4a8ee8e834ae59 to your computer and use it in GitHub Desktop.
Start a F# Dotnet.Core Project
#!/bin/bash
# To install dotnet on windows choco install -y dotnetcore-sdk
PRJ=$1
dotnet new console -lang F# -o $PRJ
cd $PRJ
dotnet add package FSharp.Data
# The only working one I could find...
dotnet add package -v 2.4.2 GDAL.Native
dotnet add package -v 2.4.2 GDAL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment