mirror of https://github.com/grpc/grpc.git
Merge pull request #4766 from jtattermusch/artifact_builder_win_fix
Fix C# artifact building on windows.pull/4784/merge
commit
5dd0d1d4fe
3 changed files with 18 additions and 2 deletions
@ -0,0 +1,12 @@ |
||||
@rem Builds C# artifacts on Windows |
||||
|
||||
@call vsprojects\build_vs2013.bat %* || goto :error |
||||
|
||||
mkdir artifacts |
||||
copy /Y vsprojects\Release\grpc_csharp_ext.dll artifacts || copy /Y vsprojects\x64\Release\grpc_csharp_ext.dll artifacts || goto :error |
||||
|
||||
goto :EOF |
||||
|
||||
:error |
||||
echo Failed! |
||||
exit /b %errorlevel% |
Loading…
Reference in new issue