mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
11 lines
223 B
Batchfile
11 lines
223 B
Batchfile
|
@rem Builds Google.Protobuf NuGet packages
|
||
|
|
||
|
dotnet restore src/Google.Protobuf.sln
|
||
|
dotnet pack -c Release src/Google.Protobuf.sln /p:SourceLinkCreate=true || goto :error
|
||
|
|
||
|
goto :EOF
|
||
|
|
||
|
:error
|
||
|
echo Failed!
|
||
|
exit /b %errorlevel%
|