aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/pre_build_csharp.bat
diff options
context:
space:
mode:
Diffstat (limited to 'tools/run_tests/pre_build_csharp.bat')
-rw-r--r--tools/run_tests/pre_build_csharp.bat22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/run_tests/pre_build_csharp.bat b/tools/run_tests/pre_build_csharp.bat
new file mode 100644
index 0000000000..853a8f4325
--- /dev/null
+++ b/tools/run_tests/pre_build_csharp.bat
@@ -0,0 +1,22 @@
+@rem Performs nuget restore step for C#.
+
+setlocal
+
+@rem enter repo root
+cd /d %~dp0\..\..
+
+@rem Location of nuget.exe
+set NUGET=C:\nuget\nuget.exe
+
+if exist %NUGET% (
+ %NUGET% restore vsprojects/grpc_csharp_ext.sln || goto :error
+ %NUGET% restore src/csharp/Grpc.sln || goto :error
+)
+
+endlocal
+
+goto :EOF
+
+:error
+echo Failed!
+exit /b %errorlevel%