Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a solution upgrading act into the build process #176

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add solution upgrading act into the build process
  • Loading branch information
sinloss committed Dec 10, 2019
commit e925b717a0bd0fa5b35c3dc0c0679030c8303052
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
.vs
*.sln
*.suo
*.vcproj
*.vcxproj
*.vcxproj.filters
UpgradeLog*.htm
*.pyc
winpty.sdf
winpty.opensdf
Expand Down
7 changes: 7 additions & 0 deletions vcbuild.bat
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ if errorlevel 1 (
exit /b 1
)

REM -------------------------------------------------------------------------
REM -- Upgrade the project.
devenv winpty.sln /Upgrade || (
echo error: Solution Upgrade failed
exit /b 1
)

REM -------------------------------------------------------------------------
REM -- Compile the project.

Expand Down