mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
530 B
22 lines
530 B
9 years ago
|
|
||
|
@rem enter this directory
|
||
|
cd /d %~dp0
|
||
|
|
||
|
@rem extract input artifacts
|
||
|
powershell -Command "Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::ExtractToDirectory('../../../input_artifacts/csharp_nugets.zip', 'TestNugetFeed');"
|
||
|
|
||
|
update_version.sh auto
|
||
|
|
||
|
set NUGET=C:\nuget\nuget.exe
|
||
|
%NUGET% restore || goto :error
|
||
|
|
||
|
@call build_vs2015.bat DistribTest.sln %MSBUILD_EXTRA_ARGS% || goto :error
|
||
|
|
||
|
%DISTRIBTEST_OUTPATH%\DistribTest.exe || goto :error
|
||
|
|
||
|
goto :EOF
|
||
|
|
||
|
:error
|
||
|
echo Failed!
|
||
|
exit /b %errorlevel%
|