diff --git a/dotnet/util/build b/dotnet/util/build new file mode 100755 index 0000000..d968155 --- /dev/null +++ b/dotnet/util/build @@ -0,0 +1,4 @@ +#!/bin/bash + +dotnet restore >/dev/null +dotnet build -c Release >/dev/null diff --git a/dotnet/util/run b/dotnet/util/run new file mode 100755 index 0000000..67a1ee0 --- /dev/null +++ b/dotnet/util/run @@ -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"