mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-12-16 03:37:18 +00:00
* Replace protobuf 2.6.1 with 3.21.8 * Update/add protobuf libs * Add CS2 protos * Remove old csgo/dota protos * Add versioned protoc bin * Comment out Valve's `schema` define for now * Use ENetworkDisconnectionReason * Fix-up `offsetof` to avoid errors on some Clang versions
11 lines
233 B
Batchfile
11 lines
233 B
Batchfile
@rem Builds Google.Protobuf NuGet packages
|
|
|
|
dotnet restore src/Google.Protobuf.sln
|
|
dotnet pack -c Release src/Google.Protobuf.sln -p:ContinuousIntegrationBuild=true || goto :error
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
echo Failed!
|
|
exit /b %errorlevel%
|