Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add missing file headers to setup and batch files. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0466475f46a93860528c832923d7a98c |
User & Date: | mistachkin 2011-04-08 10:59:06.156 |
Context
2011-04-08
| ||
11:47 | Allow manual override of common setup baking properties. Also, clarify conditions for VS 2010 post-build steps in the interop assembly project. check-in: bd6bc1aab9 user: mistachkin tags: trunk | |
10:59 | Add missing file headers to setup and batch files. check-in: 0466475f46 user: mistachkin tags: trunk | |
10:50 | Parametrize the setup and add batch files to build all the necessary setup variations. check-in: 722fe9ce7f user: mistachkin tags: trunk | |
Changes
Changes to Setup/SQLite.iss.
1 2 3 4 5 6 7 | [Setup] AllowNoIcons=true ArchitecturesInstallIn64BitMode=x64 AlwaysShowComponentsList=false AppCopyright=Public Domain AppID={#AppId} AppName=System.Data.SQLite | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ; ; SQLite.iss -- ; ; Written by Joe Mistachkin. ; Released to the public domain, use at your own risk! ; [Setup] AllowNoIcons=true ArchitecturesInstallIn64BitMode=x64 AlwaysShowComponentsList=false AppCopyright=Public Domain AppID={#AppId} AppName=System.Data.SQLite |
︙ | ︙ |
Changes to Setup/set_common.bat.
1 2 3 4 5 6 | @ECHO OFF SET APPID={{02E43EC2-6B1C-45B5-9E48-941C3E1B204A} SET URL=http://system.data.sqlite.org/ SET VERSION=1.0.67.0 SET PUBLICKEY=db937bc2d44ff139 | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | @ECHO OFF :: :: set_common.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET APPID={{02E43EC2-6B1C-45B5-9E48-941C3E1B204A} SET URL=http://system.data.sqlite.org/ SET VERSION=1.0.67.0 SET PUBLICKEY=db937bc2d44ff139 |
Changes to Setup/set_x64_2008.bat.
1 2 3 4 5 6 | @ECHO OFF SET ISNETFX2=True SET VCRUNTIME=2008 SET PLATFORM=x64 SET PROCESSOR=x64 | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | @ECHO OFF :: :: set_x64_2008.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET ISNETFX2=True SET VCRUNTIME=2008 SET PLATFORM=x64 SET PROCESSOR=x64 |
Changes to Setup/set_x64_2010.bat.
1 2 3 4 5 6 | @ECHO OFF SET ISNETFX2=False SET VCRUNTIME=2010 SET PLATFORM=x64 SET PROCESSOR=x64 | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | @ECHO OFF :: :: set_x64_2010.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET ISNETFX2=False SET VCRUNTIME=2010 SET PLATFORM=x64 SET PROCESSOR=x64 |
Changes to Setup/set_x86_2008.bat.
1 2 3 4 5 6 | @ECHO OFF SET ISNETFX2=True SET VCRUNTIME=2008 SET PLATFORM=Win32 SET PROCESSOR=x86 | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | @ECHO OFF :: :: set_x86_2008.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET ISNETFX2=True SET VCRUNTIME=2008 SET PLATFORM=Win32 SET PROCESSOR=x86 |
Changes to Setup/set_x86_2010.bat.
1 2 3 4 5 6 | @ECHO OFF SET ISNETFX2=False SET VCRUNTIME=2010 SET PLATFORM=Win32 SET PROCESSOR=x86 | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | @ECHO OFF :: :: set_x86_2010.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET ISNETFX2=False SET VCRUNTIME=2010 SET PLATFORM=Win32 SET PROCESSOR=x86 |