Skip to content

Commit

Permalink
Merge pull request grpc#4569 from jskeet/fix-buildall
Browse files Browse the repository at this point in the history
Restore dependencies in buildall.bat
  • Loading branch information
jtattermusch committed Apr 27, 2016
2 parents c17939a + c283409 commit cec4298
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/csharp/buildall.bat
Original file line number Diff line number Diff line change
@@ -8,6 +8,12 @@ cd /d %~dp0
@rem Set VS variables (uses Visual Studio 2013)
@call "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat" x86

@rem Fetch all dependencies
nuget restore ..\..\vsprojects\grpc.sln || goto :error
nuget restore ..\..\vsprojects\grpc_csharp_ext.sln || goto :error
nuget restore ..\..\vsprojects\grpc_protoc_plugins.sln || goto :error
nuget restore Grpc.sln || goto :error

@rem Build the C# native extension
msbuild ..\..\vsprojects\grpc_csharp_ext.sln /p:Configuration=Debug /p:PlatformToolset=v120 || goto :error
msbuild ..\..\vsprojects\grpc_csharp_ext.sln /p:Configuration=Release /p:PlatformToolset=v120 || goto :error

0 comments on commit cec4298

Please sign in to comment.