mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-03-23 17:03:37 -04:00
8 lines
138 B
Batchfile
8 lines
138 B
Batchfile
@echo off
|
|
setlocal EnableDelayedExpansion
|
|
dotnet build --output !CD!\exe
|
|
if errorlevel 1 (
|
|
echo.Error building csdown
|
|
exit /b 1
|
|
)
|