Initial commit. Simple command wrappers

master
Ivan Zahariev 2016-11-03 23:17:00 +02:00
parent 09356704b2
commit 0c830d0e09
2 changed files with 8 additions and 0 deletions

4
dotnet/util/build Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
dotnet restore >/dev/null
dotnet build -c Release >/dev/null

4
dotnet/util/run Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
export DOTNET_CLI_TELEMETRY_OPTOUT=1 # slows down execution initially depending on your Internet speed
dotnet run -c Release | grep -v "was previously compiled. Skipping compilation"