We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0b195b commit 29cc6daCopy full SHA for 29cc6da
2 files changed
build.cmd
@@ -1,4 +1,8 @@
1
@echo off
2
+where /q dotnet6
3
+if ERRORLEVEL 1 (
4
+ echo "ERROR: 'dotnet' not found. Please ensure you have installed .NETv6 or newer" && exit /b 1
5
+)
6
rem change the target via -t, e.g.:
7
rem build -t PackNuget
8
cls
build.sh
@@ -3,6 +3,7 @@ if test "$OS" = "Windows_NT"
then
cmd /C build.cmd
else
+ which dotnet6 > /dev/null || { echo "ERROR: 'dotnet' not found. Please ensure you have installed .NETv6" >&2;
dotnet tool restore
dotnet paket restore
9
#dotnet fsi build.fsx -t Build $@
0 commit comments