Index: test/user_app.wxs.xml |
diff --git a/test/user_app.wxs.xml b/test/user_app.wxs.xml |
deleted file mode 100644 |
index fdd023aeeb03185ac9eb3c31dc25f31e3ba7376b..0000000000000000000000000000000000000000 |
--- a/test/user_app.wxs.xml |
+++ /dev/null |
@@ -1,72 +0,0 @@ |
-<?xml version='1.0'?> |
-<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'> |
- <Product Id='$(var.FooProductGuid)' Name='!!! User Test Foo' Language='1033' |
- Version="$(var.FooVersion)" Manufacturer='Google' |
- UpgradeCode='97781963-8283-4602-A9DA-CAE7A5536C75'> |
- <Package Id='*' |
- Description='User Test Foo' |
- Comments='Copyright 2007-2010 Google Inc.' |
- Manufacturer='Google Inc.' |
- InstallerVersion='200' |
- Compressed='yes' /> |
- |
- <Upgrade Id='97781963-8283-4602-A9DA-CAE7A5536C75'> |
- <UpgradeVersion Property='UPGRADING' |
- OnlyDetect='no' |
- Minimum='0.0.0.0' IncludeMinimum='yes' |
- Maximum='$(var.FooVersion)' IncludeMaximum='no' /> |
- <UpgradeVersion Property='NEWERVERSIONDETECTED' |
- OnlyDetect='yes' |
- Minimum='$(var.FooVersion)' IncludeMinimum='yes' /> |
- </Upgrade> |
- |
- <InstallExecuteSequence> |
- <RemoveExistingProducts After='InstallValidate'>UPGRADING</RemoveExistingProducts> |
- </InstallExecuteSequence> |
- |
- <Media Id='1' Cabinet='product.cab' EmbedCab='yes' CompressionLevel='high' /> |
- |
- <Directory Id='TARGETDIR' Name='SourceDir'> |
- <Directory Id='LocalAppDataFolder' Name='PFiles'> |
- <Directory Id='UserFooDir' Name='UserTestFoo'> |
- <Directory Id='UserFooVersion' Name='$(var.FooVersion)'> |
- <Component Id='UserFooFiles' Guid='$(var.FooComponentGuid)'> |
- <File Id='test_foo' Vital='yes' Name='test_foo.exe' |
- DiskId='1' Source="$(var.FooExePath)"/> |
- <RegistryValue Id='test_foo' Root='HKCU' Key='Software\Microsoft\RunAs\KeyPaths' Type='string' Value='test_foo.exe' KeyPath='yes' /> |
- <RemoveFolder Id='UserFooVersion' Directory='UserFooVersion' On='uninstall'/> |
- <RemoveFolder Id='UserFooDir' Directory='UserFooDir' On='uninstall'/> |
- <Condition>NOT (ALLUSERS)</Condition> |
- </Component> |
- </Directory> |
- <Component Id='UserFooReg' Guid='$(var.FooComponentGuidRegistry)'> |
- <RegistryValue Root='HKCU' |
- Key='Software\Google\Update\Clients\{104844D6-7DDA-460b-89F0-FBF8AFDD0A67}' |
- Name='name' Value="user_test_foo" |
- Action='write' Type='string' /> |
- <RegistryValue Root='HKCU' |
- Key='Software\Google\Update\Clients\{104844D6-7DDA-460b-89F0-FBF8AFDD0A67}' |
- Name='pv' Value="$(var.FooVersion)" |
- Action='write' Type='string' /> |
- <Condition>NOT (ALLUSERS)</Condition> |
- </Component> |
- </Directory> |
- </Directory> |
- </Directory> |
- |
- <Feature Id='Foo' Title='Foo' Level='1'> |
- <ComponentRef Id='UserFooFiles' /> |
- <ComponentRef Id='UserFooReg' /> |
- </Feature> |
- <Property Id="UILevel"><![CDATA[1]]></Property> |
- |
- <Condition Message='Test Foo runs only on Windows 2000 Service Pack 3 and later.'> |
- (VersionNT = 500 AND ServicePackLevel = 3) OR VersionNT >= 501 |
- </Condition> |
- |
- <Condition Message='User Test Foo only runs as a non admin'> |
- NOT ALLUSERS |
- </Condition> |
- </Product> |
-</Wix> |
- |