Phase 0 completion: NT8 SDK core framework with risk management and position sizing
Some checks failed
Build and Test / build (push) Has been cancelled
Some checks failed
Build and Test / build (push) Has been cancelled
This commit is contained in:
36
verify-build.bat
Normal file
36
verify-build.bat
Normal file
@@ -0,0 +1,36 @@
|
||||
@echo off
|
||||
echo NT8 SDK Build Verification
|
||||
echo =========================
|
||||
|
||||
echo.
|
||||
echo Cleaning previous builds...
|
||||
dotnet clean --verbosity quiet
|
||||
|
||||
echo.
|
||||
echo Restoring packages...
|
||||
dotnet restore
|
||||
if %ERRORLEVEL% neq 0 (
|
||||
echo ❌ Package restore failed
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
echo.
|
||||
echo Building solution...
|
||||
dotnet build --no-restore --configuration Release
|
||||
if %ERRORLEVEL% neq 0 (
|
||||
echo ❌ Build failed
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
echo.
|
||||
echo Running tests...
|
||||
dotnet test --no-build --configuration Release --verbosity minimal
|
||||
if %ERRORLEVEL% neq 0 (
|
||||
echo ❌ Tests failed
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
echo.
|
||||
echo ✅ All checks passed!
|
||||
echo Build is ready for NT8 integration
|
||||
pause
|
||||
Reference in New Issue
Block a user