2023-08-05 02:10:20 +03:00
|
|
|
@echo off
|
2024-07-11 17:24:46 +03:00
|
|
|
setlocal enabledelayedexpansion
|
2023-08-05 02:10:20 +03:00
|
|
|
SET ROOT=%~dp0
|
|
|
|
IF EXIST "%ROOT%\bin\dotnet\dotnet.exe" (
|
2024-07-11 17:24:46 +03:00
|
|
|
SET "DOTNET_ROOT=%ROOT%\bin\dotnet"
|
|
|
|
SET "PATH=!DOTNET_ROOT!;%PATH%"
|
2023-08-05 02:10:20 +03:00
|
|
|
call "%ROOT%\bin\dotnet\dotnet.exe" %*
|
|
|
|
) ELSE (
|
|
|
|
echo "You must build MAUI first. Please see '.github/DEVELOPMENT.md' for details."
|
|
|
|
)
|