Init
This commit is contained in:
17
run-on-windows.cmd
Normal file
17
run-on-windows.cmd
Normal file
@@ -0,0 +1,17 @@
|
||||
@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
|
||||
Reference in New Issue
Block a user