Skip to content

Instantly share code, notes, and snippets.

@andypiper
Created May 8, 2012 16:18
Show Gist options
  • Star 54 You must be signed in to star a gist
  • Fork 13 You must be signed in to fork a gist
  • Save andypiper/2636885 to your computer and use it in GitHub Desktop.
Save andypiper/2636885 to your computer and use it in GitHub Desktop.
nuget for OS X
#!/bin/sh
# add a simple 'nuget' command to Mac OS X under Mono
# get NuGet.exe binary from http://nuget.codeplex.com/releases/view/58939
# get Microsoft.Build.dll from a Windows .NET 4.0 installation
# copy to /usr/local/bin and Robert is your father's brother....
#
PATH=/usr/local/bin:$PATH
mono --runtime=v4.0 /usr/local/bin/NuGet.exe $*
@acivang
Copy link

acivang commented Dec 6, 2016

great job,thx!

@J8088
Copy link

J8088 commented Sep 1, 2017

On MacOS the command "dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL --version 2.0.0"
gives the error for me "error: Unable to find package Npgsql.EntityFrameworkCore.PostgreSQL with version (>= 2.0.0)"

Could you please advise how to solve it?

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