mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +01:00
9 lines
173 B
Batchfile
9 lines
173 B
Batchfile
|
@echo off
|
||
|
capnp compile -ocsharp -I%cd% .\capnp\schema.capnp
|
||
|
if %ERRORLEVEL% neq 0 exit /b 1
|
||
|
if exist .\capnp\schema.cs (
|
||
|
del .\capnp\schema.cs
|
||
|
) else (
|
||
|
exit /b 2
|
||
|
)
|