Skip to content

Commit f2012e7

Browse files
committed
Rename ide.msi and ide.cab to ide.asserts.msi and ide.asserts.cab
1 parent d1b5a64 commit f2012e7

File tree

8 files changed

+20
-12
lines changed

8 files changed

+20
-12
lines changed

platforms/Windows/SideBySideUpgradeStrategy.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<BldAssertsUpgradeCode>{7E95DC06-7F84-4E8E-A038-8304AF0468FB}</BldAssertsUpgradeCode>
2121
<CliAssertsUpgradeCode>{87019842-3F3E-4227-B5C5-23A8EF72AD89}</CliAssertsUpgradeCode>
2222
<DbgAssertsUpgradeCode>{91D382AF-1E92-44DC-A4AD-AEE91C1B5160}</DbgAssertsUpgradeCode>
23-
<IdeUpgradeCode>{8DD91C86-D13D-490B-B06B-9522A9CF504C}</IdeUpgradeCode>
23+
<IdeAssertsUpgradeCode>{8DD91C86-D13D-490B-B06B-9522A9CF504C}</IdeAssertsUpgradeCode>
2424
<RtlUpgradeCode>{BEA8C6DC-F73E-445B-9486-2333D1CF2886}</RtlUpgradeCode>
2525
<AndroidPlatformUpgradeCode>{313B9C1F-D5B5-4FED-B7E0-138F1EE6B26A}</AndroidPlatformUpgradeCode>
2626
<WindowsPlatformUpgradeCode>{01AFF1CF-A025-41B6-BCBC-728D794353FD}</WindowsPlatformUpgradeCode>
@@ -57,7 +57,7 @@
5757
BldAssertsUpgradeCode=$(BldAssertsUpgradeCode);
5858
CliAssertsUpgradeCode=$(CliAssertsUpgradeCode);
5959
DbgAssertsUpgradeCode=$(DbgAssertsUpgradeCode);
60-
IdeUpgradeCode=$(IdeUpgradeCode);
60+
IdeAssertsUpgradeCode=$(IdeAssertsUpgradeCode);
6161
RtlUpgradeCode=$(RtlUpgradeCode);
6262
AndroidPlatformUpgradeCode=$(AndroidPlatformUpgradeCode);
6363
WindowsPlatformUpgradeCode=$(WindowsPlatformUpgradeCode);

platforms/Windows/bundle/installer.wixproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<ProjectReference Include="..\bld\asserts\bld.asserts.wixproj" BindName="bld.asserts" />
2020
<ProjectReference Include="..\cli\asserts\cli.asserts.wixproj" BindName="cli.asserts" />
2121
<ProjectReference Include="..\dbg\asserts\dbg.asserts.wixproj" BindName="dbg.asserts" />
22-
<ProjectReference Include="..\ide\ide.wixproj" BindName="ide" />
22+
<ProjectReference Include="..\ide\asserts\ide.asserts.wixproj" BindName="ide.asserts" />
2323
<ProjectReference Include="..\rtl\msi\rtlmsi.wixproj" BindName="rtl" />
2424
</ItemGroup>
2525

platforms/Windows/bundle/installer.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
</MsiPackage>
103103

104104
<MsiPackage
105-
SourceFile="!(bindpath.ide)\ide.msi"
105+
SourceFile="!(bindpath.ide.asserts)\ide.asserts.msi"
106106
InstallCondition="OptionsInstallIDE = 1"
107107
DownloadUrl="$(BaseReleaseDownloadUrl)/{2}">
108108
<MsiProperty Name="INSTALLROOT" Value="[InstallRoot]" />
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Project Sdk="WixToolset.Sdk/4.0.5">
2+
<PropertyGroup>
3+
<OutputName>ide.asserts</OutputName>
4+
</PropertyGroup>
5+
</Project>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2+
<?include ../ide.wxi ?>
3+
</Wix>

platforms/Windows/ide/ide.wixproj

Lines changed: 0 additions & 2 deletions
This file was deleted.

platforms/Windows/ide/ide.wxs renamed to platforms/Windows/ide/ide.wxi

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Include xmlns="http://wixtoolset.org/schemas/v4/wxs">
23

34
<?define ToolchainRoot = $(ImageRoot)\Toolchains\$(ProductVersion)+Asserts?>
45

56
<Package
67
Language="1033"
78
Manufacturer="!(loc.ManufacturerName)"
8-
Name="!(loc.Ide_ProductName)"
9-
UpgradeCode="$(IdeUpgradeCode)"
9+
Name="!(loc.IdeAsserts_ProductName)"
10+
UpgradeCode="$(IdeAssertsUpgradeCode)"
1011
Version="$(NonSemVerProductVersion)"
1112
Scope="$(PackageScope)">
1213

1314
<Media Id="1" Cabinet="ide.cab" EmbedCab="$(ArePackageCabsEmbedded)" />
1415

15-
<WixVariable Id="SideBySidePackageUpgradeCode" Value="$(IdeUpgradeCode)" />
16+
<WixVariable Id="SideBySidePackageUpgradeCode" Value="$(IdeAssertsUpgradeCode)" />
1617
<FeatureGroupRef Id="SideBySideUpgradeStrategy" />
1718

1819
<DirectoryRef Id="_usr_include">
@@ -59,7 +60,7 @@
5960
</Component>
6061
</ComponentGroup>
6162

62-
<Feature Id="IDETools" AllowAbsent="no" Title="!(loc.Ide_ProductName)">
63+
<Feature Id="IDETools" AllowAbsent="no" Title="!(loc.IdeAsserts_ProductName)">
6364
<ComponentGroupRef Id="clangd" />
6465
<ComponentGroupRef Id="lldb" />
6566
<ComponentGroupRef Id="sourcekitd" />
@@ -68,4 +69,4 @@
6869
<ComponentGroupRef Id="VersionedDirectoryCleanup" />
6970
</Feature>
7071
</Package>
71-
</Wix>
72+
</Include>

platforms/Windows/shared/swift.en-us.wxl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<String Id="Dbg_ProductName" Value="Swift Debugging Tools" />
1010
<String Id="DbgAsserts_ProductName" Value="Swift Debugging Tools (Asserts)" />
1111
<String Id="Ide_ProductName" Value="Swift IDE Integration Tools" />
12+
<String Id="IdeAsserts_ProductName" Value="Swift IDE Integration Tools (Asserts)" />
1213
<String Id="Rtl_ProductName" Value="Swift Windows Runtime" />
1314
<String Id="VCRuntime_ProductName_arm64" Value="Visual C++ Runtime (ARM64)" />
1415
<String Id="VCRuntime_ProductName_amd64" Value="Visual C++ Runtime (AMD64)" />

0 commit comments

Comments
 (0)