1
0
Fork 0
mirror of https://github.com/engineer-man/piston.git synced 2025-05-10 13:46:26 +02:00
piston/packages/dotnet/5.0.201/compile
2021-03-20 15:17:55 +13:00

12 lines
No EOL
232 B
Bash

#!/usr/bin/env bash
export DOTNET_CLI_HOME=$PWD
dotnet build > /dev/null # Shut the thing up
dotnet new console -o . --no-restore
rm Program.cs
dotnet restore --source $DOTNET_ROOT/.nuget/packages
dotnet build -o . --no-restore