18 lines
451 B
Batchfile
18 lines
451 B
Batchfile
|
|
@echo off
|
||
|
|
REM Build + run the Claude Overview widget on Windows.
|
||
|
|
REM Double-click this from Explorer at \\wsl.localhost\Ubuntu\home\philipp\git\claude-local-overview-display
|
||
|
|
REM or run it from a Windows terminal (cmd/PowerShell) in this folder.
|
||
|
|
|
||
|
|
setlocal
|
||
|
|
cd /d "%~dp0"
|
||
|
|
|
||
|
|
where dotnet >nul 2>nul
|
||
|
|
if errorlevel 1 (
|
||
|
|
echo .NET SDK not found. Install it first:
|
||
|
|
echo winget install Microsoft.DotNet.SDK.8
|
||
|
|
pause
|
||
|
|
exit /b 1
|
||
|
|
)
|
||
|
|
|
||
|
|
dotnet run -c Release
|