Skip to content

Commit

Permalink
Move build.cmd up
Browse files Browse the repository at this point in the history
  • Loading branch information
volkanceylan committed Oct 25, 2024
1 parent 288da34 commit 797f142
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ TestResults/
*.suo
*.DotSettings*
*.user
_build*.sln
build*.sln
Thumbs.db
ErrorLog.db
StyleCop.Cache
Expand Down
26 changes: 13 additions & 13 deletions build/build.cmd → build.cmd
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
@echo off
dotnet run --project %~dp0\_build.csproj -- %*%
if "%~1"=="push" goto :cfpush
pause
goto :eof

:cfpush
echo.
CHOICE /M "Run common-features\build-cf.cmd %*%"
If %ERRORLEVEL% EQU 1 (
cd %~dp0\..\common-features
call build-cf.cmd %*%
)
@echo off
dotnet run --project %~dp0\build\build.csproj -- %*%
if "%~1"=="push" goto :cfpush
pause
goto :eof

:cfpush
echo.
CHOICE /M "Run common-features\build-cf.cmd %*%"
If %ERRORLEVEL% EQU 1 (
cd %~dp0\common-features
call build-cf.cmd %*%
)
File renamed without changes.
File renamed without changes.

0 comments on commit 797f142

Please sign in to comment.