mirror of
https://github.com/Tribufu/TribufuDotNet
synced 2026-08-08 12:21:07 +00:00
7 lines
182 B
PowerShell
7 lines
182 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
Get-ChildItem ./Intermediate -Filter *.nupkg -Recurse -Force | Remove-Item -Force
|
|
|
|
dotnet clean
|
|
dotnet build -c Release
|
|
dotnet pack -c Release -o ./Intermediate
|