Skip to content

Commit

Permalink
Restore packages (on Mac) by using NuGet.exe when building on command…
Browse files Browse the repository at this point in the history
… line
  • Loading branch information
joethephish committed Jun 20, 2016
1 parent 37031ea commit 4be628f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Binary file added NuGet.exe
Binary file not shown.
3 changes: 3 additions & 0 deletions build_mac_debug.command
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
cd "`dirname "$0"`"

# Ensure we have latest packages
mono NuGet.exe restore ink.sln

# Build the debug code
xbuild /p:Configuration=Debug ink.sln

Expand Down
3 changes: 3 additions & 0 deletions build_release.command
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
cd "`dirname "$0"`"

# Ensure we have latest packages
mono NuGet.exe restore ink.sln

# Build the release code
xbuild /p:Configuration=Release ink.sln

Expand Down

0 comments on commit 4be628f

Please sign in to comment.