Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixes for build automation on Windows XP. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | build-enhancements |
Files: | files | file ages | folders |
SHA1: |
678932b7c5aa9a5a366d469ed058ad0f |
User & Date: | mistachkin 2011-07-02 05:57:59 |
Context
2011-07-02
| ||
06:14 | Fix GAC install/uninstall for bundled setup packages. check-in: b92515a271 user: mistachkin tags: build-enhancements | |
05:57 | Fixes for build automation on Windows XP. check-in: 678932b7c5 user: mistachkin tags: build-enhancements | |
05:27 | Exclude more empty directories from the source archive. check-in: 00c3df8913 user: mistachkin tags: build-enhancements | |
Changes
Changes to Setup/set_2008.bat.
6 7 8 9 10 11 12 |
:: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETFX20ONLY= SET NETFX40ONLY= SET NETFX35ONLY=1 |
> > |
6 7 8 9 10 11 12 13 14 |
:: Written by Joe Mistachkin.
:: Released to the public domain, use at your own risk!
::
SET NETFX20ONLY=
SET NETFX40ONLY=
SET NETFX35ONLY=1
VERIFY > NUL
|
Changes to Setup/set_2010.bat.
6 7 8 9 10 11 12 |
:: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY=1 |
> > |
6 7 8 9 10 11 12 13 14 |
:: Written by Joe Mistachkin.
:: Released to the public domain, use at your own risk!
::
SET NETFX20ONLY=
SET NETFX35ONLY=
SET NETFX40ONLY=1
VERIFY > NUL
|
Changes to Setup/vsSp.bat.
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
:errors
CALL :fn_SetErrorLevel
ENDLOCAL
GOTO end_of_file
:no_errors
CALL :fn_ResetErrorLevel
ENDLOCAL && (
SET VS2008SP=%VS2008SP%
SET VS2010SP=%VS2010SP%
)
GOTO end_of_file
:end_of_file
EXIT /B %ERRORLEVEL%
|
< > |
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
:errors
CALL :fn_SetErrorLevel
ENDLOCAL
GOTO end_of_file
:no_errors
ENDLOCAL && (
SET VS2008SP=%VS2008SP%
SET VS2010SP=%VS2010SP%
)
CALL :fn_ResetErrorLevel
GOTO end_of_file
:end_of_file
EXIT /B %ERRORLEVEL%
|