aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/build_artifact_csharp.bat
blob: 49a8ada6acbca3f7c1a0b466b24a9939a0605c17 (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 || goto :error

goto :EOF

:error
echo Failed!
exit /b %errorlevel%