blob: 33dc8c25aeabd05facbdadc87b91a243f8b5d8c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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%
|