-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathSideBySideUpgradeStrategy.props
More file actions
74 lines (63 loc) · 3.42 KB
/
Copy pathSideBySideUpgradeStrategy.props
File metadata and controls
74 lines (63 loc) · 3.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="utf-8"?>
<Project>
<!--
Note that these GUIDs are substituted at bind time so they skip the normal
validation and cleanup that the compiler does and therefore must be
"proper" GUIDs:
- Uppercase
- Surrounded by curly braces
Packages keep the same upgrade codes "forever" because MSI lets you specify
version ranges for upgrades, which you can find in shared/shared.wxs.
Bundles don't support upgrade version ranges, so the bundle upgrade code
must change for every minor version _and_ stay the same for the entire
lifetime of that minor version (e.g., v5.10.0 through v5.10.9999).
-->
<PropertyGroup>
<BldAssertsUpgradeCode>{7E95DC06-7F84-4E8E-A038-8304AF0468FB}</BldAssertsUpgradeCode>
<BldNoAssertsUpgradeCode>{0F18B0C5-F6EE-46DE-A930-E666BEE6A9C3}</BldNoAssertsUpgradeCode>
<CliAssertsUpgradeCode>{87019842-3F3E-4227-B5C5-23A8EF72AD89}</CliAssertsUpgradeCode>
<CliNoAssertsUpgradeCode>{BBF4E043-FAB3-4E7A-9E6D-714E3F3EBA9C}</CliNoAssertsUpgradeCode>
<DbgAssertsUpgradeCode>{91D382AF-1E92-44DC-A4AD-AEE91C1B5160}</DbgAssertsUpgradeCode>
<DbgNoAssertsUpgradeCode>{6F26625B-7662-4631-8E0E-F2244339ED37}</DbgNoAssertsUpgradeCode>
<IdeAssertsUpgradeCode>{8DD91C86-D13D-490B-B06B-9522A9CF504C}</IdeAssertsUpgradeCode>
<IdeNoAssertsUpgradeCode>{C5519168-CF7B-4127-98B7-D886D9789B42}</IdeNoAssertsUpgradeCode>
<RtlUpgradeCode>{BEA8C6DC-F73E-445B-9486-2333D1CF2886}</RtlUpgradeCode>
<AndroidPlatformUpgradeCode>{313B9C1F-D5B5-4FED-B7E0-138F1EE6B26A}</AndroidPlatformUpgradeCode>
<WindowsPlatformUpgradeCode>{01AFF1CF-A025-41B6-BCBC-728D794353FD}</WindowsPlatformUpgradeCode>
</PropertyGroup>
<PropertyGroup Condition="'$(MajorMinorProductVersion)' == '0.0'">
<BundleUpgradeCode>{963BE094-A046-47B3-83B2-BEBE92859D39}</BundleUpgradeCode>
</PropertyGroup>
<PropertyGroup Condition="'$(MajorMinorProductVersion)' == '5.9'">
<BundleUpgradeCode>{710F1827-DA4A-4BF4-BDCE-D5F2D7C0DEF2}</BundleUpgradeCode>
</PropertyGroup>
<PropertyGroup Condition="'$(MajorMinorProductVersion)' == '5.10'">
<BundleUpgradeCode>{917DAD47-82C9-4845-ACBE-57E169EDF799}</BundleUpgradeCode>
</PropertyGroup>
<PropertyGroup Condition="'$(MajorMinorProductVersion)' == '6.0'">
<BundleUpgradeCode>{95A51A3B-1521-4A98-8BE1-6381BA688561}</BundleUpgradeCode>
</PropertyGroup>
<PropertyGroup Condition="'$(MajorMinorProductVersion)' == '6.1'">
<BundleUpgradeCode>{FE697529-162A-4D62-904E-F5BC964C370F}</BundleUpgradeCode>
</PropertyGroup>
<PropertyGroup Condition="'$(MajorMinorProductVersion)' == '6.2'">
<BundleUpgradeCode>{E41E5E4A-6DA1-435A-A1DC-7CB3E14664F4}</BundleUpgradeCode>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>
$(DefineConstants);
BundleUpgradeCode=$(BundleUpgradeCode);
BldAssertsUpgradeCode=$(BldAssertsUpgradeCode);
BldNoAssertsUpgradeCode=$(BldNoAssertsUpgradeCode);
CliAssertsUpgradeCode=$(CliAssertsUpgradeCode);
CliNoAssertsUpgradeCode=$(CliNoAssertsUpgradeCode);
DbgAssertsUpgradeCode=$(DbgAssertsUpgradeCode);
DbgNoAssertsUpgradeCode=$(DbgNoAssertsUpgradeCode);
IdeAssertsUpgradeCode=$(IdeAssertsUpgradeCode);
IdeNoAssertsUpgradeCode=$(IdeNoAssertsUpgradeCode);
RtlUpgradeCode=$(RtlUpgradeCode);
AndroidPlatformUpgradeCode=$(AndroidPlatformUpgradeCode);
WindowsPlatformUpgradeCode=$(WindowsPlatformUpgradeCode);
</DefineConstants>
</PropertyGroup>
</Project>