Skip to content

Commit

Permalink
Fix build scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
JPWatson committed Jan 25, 2022
1 parent 8680f92 commit 308079e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 29 deletions.
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#### Port
Aeron.NET has been ported against Java version:
- Agrona: 1.0.7
- Aeron: 1.28.2
- Agrona: 1.14.0
- Aeron: 1.37.0
8 changes: 4 additions & 4 deletions scripts/build-nuget-packages.bat
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@echo off
pushd %~dp0..
call dotnet pack src\Adaptive.Aeron\Adaptive.Aeron.csproj -c Release --output ..\..\nupkgs
call dotnet pack src\Adaptive.Agrona\Adaptive.Agrona.csproj -c Release --output ..\..\nupkgs
call dotnet pack src\Adaptive.Cluster\Adaptive.Cluster.csproj -c Release --output ..\..\nupkgs
call dotnet pack src\Adaptive.Archiver\Adaptive.Archiver.csproj -c Release --output ..\..\nupkgs
call dotnet pack src\Adaptive.Aeron\Adaptive.Aeron.csproj -c Release --output nupkgs
call dotnet pack src\Adaptive.Agrona\Adaptive.Agrona.csproj -c Release --output nupkgs
call dotnet pack src\Adaptive.Cluster\Adaptive.Cluster.csproj -c Release --output nupkgs
call dotnet pack src\Adaptive.Archiver\Adaptive.Archiver.csproj -c Release --output nupkgs
call .\scripts\nuget pack .\driver\Aeron.Driver.nuspec -OutputDirectory nupkgs
popd
19 changes: 0 additions & 19 deletions scripts/build-prerelease-nuget-packages.bat

This file was deleted.

8 changes: 4 additions & 4 deletions scripts/build-release-nuget-packages.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ SET nuget_source=https://api.nuget.org/v3/index.json

del nupkgs\*.nupkg

call dotnet pack src\Adaptive.Aeron\Adaptive.Aeron.csproj -c Release --output ..\..\nupkgs
call dotnet pack src\Adaptive.Agrona\Adaptive.Agrona.csproj -c Release --output ..\..\nupkgs
call dotnet pack src\Adaptive.Cluster\Adaptive.Cluster.csproj -c Release --output ..\..\nupkgs
call dotnet pack src\Adaptive.Archiver\Adaptive.Archiver.csproj -c Release --output ..\..\nupkgs
call dotnet pack src\Adaptive.Aeron\Adaptive.Aeron.csproj -c Release --output nupkgs
call dotnet pack src\Adaptive.Agrona\Adaptive.Agrona.csproj -c Release --output nupkgs
call dotnet pack src\Adaptive.Cluster\Adaptive.Cluster.csproj -c Release --output nupkgs
call dotnet pack src\Adaptive.Archiver\Adaptive.Archiver.csproj -c Release --output nupkgs
call .\scripts\nuget pack .\driver\Aeron.Driver.nuspec -OutputDirectory nupkgs

call dotnet nuget push nupkgs\Agrona.*.nupkg -s %nuget_source%
Expand Down

0 comments on commit 308079e

Please sign in to comment.