mirror of
https://github.com/Tribufu/TribufuDotNet
synced 2026-08-07 20:06:22 +00:00
* Migrate to new tribufu project structure * Update .gitignore * Remove old api files * Update Directory.Build.props * Rename solution
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
|