mirror of
https://github.com/engineer-man/piston.git
synced 2025-06-08 19:26:25 +02:00
12 lines
No EOL
252 B
Bash
12 lines
No EOL
252 B
Bash
#!usr/bin/env bash
|
|
|
|
export DOTNET_CLI_HOME=$PWD
|
|
export HOME=$PWD
|
|
|
|
rename 's/$/\.cs/' "$@"
|
|
dotnet build --help > /dev/null
|
|
dotnet new console -o . --no-restore
|
|
rm Program.cs
|
|
|
|
dotnet restore --source $DOTNET_ROOT/.nuget/packages
|
|
dotnet build --no-restore |