23 lines
586 B
Bash
23 lines
586 B
Bash
#! /bin/bash
|
|
rm -rf ~/.nuget/packages/polonium*
|
|
cd ../Polonium.Tasks
|
|
dotnet clean Polonium.Tasks.csproj
|
|
dotnet restore Polonium.Tasks.csproj
|
|
dotnet build Polonium.Tasks.csproj
|
|
|
|
cd ../Polonium.Generators
|
|
dotnet clean Polonium.Generators.csproj
|
|
dotnet restore Polonium.Generators.csproj
|
|
dotnet build Polonium.Generators.csproj
|
|
|
|
cd ../Polonium
|
|
rm -rf ~/.nuget/packages/polonium*
|
|
dotnet clean Polonium.csproj
|
|
dotnet restore Polonium.csproj
|
|
dotnet build Polonium.csproj
|
|
|
|
|
|
cd ../Polonium.Sdk
|
|
dotnet clean Polonium.Sdk.csproj
|
|
dotnet restore Polonium.Sdk.csproj
|
|
dotnet build Polonium.Sdk.csproj |