Skip to content

Commit

Permalink
Updated build.ps1 to clear contents of output folder
Browse files Browse the repository at this point in the history
  • Loading branch information
DamianSuess committed Feb 8, 2023
1 parent 67917c8 commit 9d1b581
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.ps1
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# Build script for generating NuGet packages

if (Test-Path -Path "bin")
{
Remove-Item bin\* -Recurse -Force
}

# Clean both debug and release
dotnet clean
dotnet clean --configuration Release


# build package for release
dotnet build --configuration Release

Expand Down

0 comments on commit 9d1b581

Please sign in to comment.