Skip to content

Commit

Permalink
chore: update build-release script
Browse files Browse the repository at this point in the history
  • Loading branch information
gingters committed Nov 7, 2023
1 parent 9f23d4d commit 2a6addb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/full-rebuild.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }
# dotnet nuget locals --clear all

dotnet build
dotnet restore
dotnet build --configuration Release
dotnet pack --configuration Release --output ./packages --no-build
# cd packages
# dotnet nuget push *.nupkg --source nuget.org --api-key {API_KEY_HERE}

0 comments on commit 2a6addb

Please sign in to comment.