OLD | NEW |
| (Empty) |
1 # Each line is evaluated as a tuple by the build script. | |
2 # | |
3 # The second and fourth fields are always required. Most other fields are requir
ed if "Build Enterprise MSI" is true. | |
4 # When updating the version, update the second, third, and fourth fields. | |
5 # | |
6 # The fields are: | |
7 # * Friendly product name (required for MSI). Can include spaces, etc. | |
8 # * Standalone installer exe name base (required) - everything but '.exe'. | |
9 # * We recommend including the version of your app in the name so that it is | |
10 # easy to differentiate different copies of the standalone installer. The | |
11 # version properties of the standalone installer have Omaha's version, not | |
12 # the app's, so the only way to determine the app version is to install it. | |
13 # * List of (App Version, App Installer Location, App ID) tuples (required). | |
14 # * MSI installer name base (required for MSI) - everything but '.msi'. Cannot
change! Thus, should not include version info. Also, the resulting MSI must not
be renamed. | |
15 # * Custom tag parameters for MSI installer (optional). Example: '&brand=FOOB&a
p=enterprise' | |
16 # * Silent uninstall args (required for MSI). Args to add to the default uninst
all command line to cause the uninstall to be silent. | |
17 # * Whether to build an enterprise MSI - True/False. | |
18 # * MSI Installer data (optional) | |
19 # * File Containing Tagging Info (optional) | |
20 | |
21 ('Test Foo', 'TestFooStandaloneInstaller', [('1.0.101.0', '$STAGING_DIR/unittest
_support/test_foo_v1.0.101.0.msi', '{D6B08267-B440-4C85-9F79-E195E80D9937}')], N
one, None, None, False, '', '$MAIN_DIR/installers/SampleApp_installers.txt') | |
22 | |
23 # Not a real installer. | |
24 ('Save Arguments', 'SaveArgumentsStandaloneInstaller', [('0.1.2.0', '$STAGING_DI
R/unittest_support/SaveArguments.exe', '{7DD1EF7B-D075-47c0-BD51-F624ED87CCF0}')
], 'SaveArgumentsStandaloneEnterprise', '', '/silentuninstall', True, '', '') | |
25 ('Bundle_Foo_Argument', 'Bundle_Foo_Argument_StandaloneInstaller', [('0.1.2.0',
'$STAGING_DIR/unittest_support/SaveArguments.exe', '{7DD1EF7B-D075-47c0-BD51-F62
4ED87CCF0}'), ('1.0.101.0', '$STAGING_DIR/unittest_support/test_foo_v1.0.101.0.m
si', '{D6B08267-B440-4C85-9F79-E195E80D9937}')], None, None, None, False, '', ''
) | |
OLD | NEW |