Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: third_party/grpc/tools/run_tests/pre_build_csharp.bat

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 @rem Performs nuget restore step for C#.
2
3 setlocal
4
5 @rem enter repo root
6 cd /d %~dp0\..\..
7
8 @rem Location of nuget.exe
9 set NUGET=C:\nuget\nuget.exe
10
11 if exist %NUGET% (
12 %NUGET% restore vsprojects/grpc_csharp_ext.sln || goto :error
13 %NUGET% restore src/csharp/Grpc.sln || goto :error
14 )
15
16 endlocal
17
18 goto :EOF
19
20 :error
21 echo Failed!
22 exit /b %errorlevel%
OLDNEW
« no previous file with comments | « third_party/grpc/tools/run_tests/pre_build_c.bat ('k') | third_party/grpc/tools/run_tests/pre_build_csharp.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698