
- macOS Sierra
- Visual Studio for Mac
mkdir ~/bin
cd bin
wget https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
xbuild Example.sln
xbuild ExampleClient/ExampleClient.csproj
xbuild ExampleClientTest/ExampleClientTest.csproj
xbuild /p:Configuration=Release Example.sln
xbuild /p:Configuration=Release ExampleClient/ExampleClient.csproj
xbuild /p:Configuration=Release ExampleClientTest/ExampleClientTest.csproj
nunit-console ExampleClientTest/bin/Debug/ExampleClientTest.dll
nunit-console ExampleClientTest/bin/Release/ExampleClientTest.dll
mono ~/bin/nuget.exe pack ExampleClient/ExampleClient.csproj -properties Configuration=Release -outputdirectory .
mono ~/bin/nuget.exe pack ExampleClient/ExampleClient.csproj -symbols -properties Configuration=Release -outputdirectory .