Skip to content

Commit d523d45

Browse files
committed
Set BindName
1 parent 3c4c0fa commit d523d45

File tree

2 files changed

+7
-33
lines changed

2 files changed

+7
-33
lines changed

src/Installers/Windows/WindowsHostingBundle/Bundle.wxs

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -9,39 +9,6 @@
99
<util:RegistrySearchRef Id="RemoveSpecificPreviousVersionRegistryKeyExistsSearch" />
1010
<util:RegistrySearchRef Id="RemoveSpecificPreviousVersionRegistryKeySearch" />
1111

12-
<!-- Ensure upgrades from 3.0.0 preview 1 and 2 (Preview 3 was not shipped). Conditioned for the 3.0.0 family. Hosting bundle simships x86/x64 so there's
13-
a single set of upgrade codes. -->
14-
<?if $(Version)=3.0.0.0?>
15-
<RelatedBundle Action="upgrade" Id="{D8BFC3A1-72B1-36C1-9E5A-49FE36A5563B}" />
16-
<RelatedBundle Action="upgrade" Id="{EA47395A-BC9B-3ECC-8229-229BC9528DF6}" />
17-
<?endif?>
18-
19-
<!-- Ensure upgrades from 3.1.0 thru 3.1.9 for x64. -->
20-
<?if $(MajorVersion)=3?>
21-
<?if $(MinorVersion)=1?>
22-
<!--'Microsoft .NET Core 3.1.9 - Windows Server Hosting'-->
23-
<RelatedBundle Action="upgrade" Id="{E4913286-9840-380A-8743-3DF839147FF0}" />
24-
<!--'Microsoft .NET Core 3.1.8 - Windows Server Hosting'-->
25-
<RelatedBundle Action="upgrade" Id="{81D96996-6F29-3BAC-82C6-9156FE1BD5FB}" />
26-
<!--'Microsoft .NET Core 3.1.7 - Windows Server Hosting'-->
27-
<RelatedBundle Action="upgrade" Id="{44D6EE78-0248-36AD-9B2C-26FA728E477D}" />
28-
<!--'Microsoft .NET Core 3.1.6 - Windows Server Hosting'-->
29-
<RelatedBundle Action="upgrade" Id="{C0453F97-42DD-3CD5-9FCE-018DD1F1A020}" />
30-
<!--'Microsoft .NET Core 3.1.5 - Windows Server Hosting'-->
31-
<RelatedBundle Action="upgrade" Id="{8BF71BDA-9BF7-3AD5-9E6B-3656FEEC95AA}" />
32-
<!--'Microsoft .NET Core 3.1.4 - Windows Server Hosting'-->
33-
<RelatedBundle Action="upgrade" Id="{6CF8B606-EE26-3536-BEFE-410EA70DBB94}" />
34-
<!--'Microsoft .NET Core 3.1.3 - Windows Server Hosting'-->
35-
<RelatedBundle Action="upgrade" Id="{71F4232E-75BF-32AF-9A8F-1E87CC17CC6C}" />
36-
<!--'Microsoft .NET Core 3.1.2 - Windows Server Hosting'-->
37-
<RelatedBundle Action="upgrade" Id="{3CDBE509-D166-335B-BD17-EA6FDAC4E03A}" />
38-
<!--'Microsoft .NET Core 3.1.1 - Windows Server Hosting'-->
39-
<RelatedBundle Action="upgrade" Id="{62155173-E27B-3936-997F-56DA96ED19B5}" />
40-
<!--'Microsoft .NET Core 3.1.0 - Windows Server Hosting'-->
41-
<RelatedBundle Action="upgrade" Id="{6F741175-2F75-3845-B30B-6C364101EAA2}" />
42-
<?endif?>
43-
<?endif?>
44-
4512
<!-- Customizations of the default BA -->
4613
<Log Prefix="dd_$(var.BundleLogPrefix)_" Extension=".log" />
4714
<OptionalUpdateRegistration Manufacturer="$(var.BundleRegManufacturer)" ProductFamily="$(var.BundleRegFamily)" Name="$(var.BundleRegName)" />

src/Installers/Windows/WindowsHostingBundle/WindowsHostingBundle.wixproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,26 +30,30 @@
3030
<ProjectReference Include="..\AspNetCoreModule-Setup\ANCMV2\ANCMV2.wixproj">
3131
<SetPlatform>Platform=x86</SetPlatform>
3232
<Name>AspNetCoreModuleV2_x86</Name>
33+
<BindName>AspNetCoreModuleV2_x86</BindName>
3334
<Project>f9bacb48-3bd7-4ec2-ae31-664e8703ec12</Project>
3435
<Private>True</Private>
3536
<DoNotHarvest>true</DoNotHarvest>
3637
</ProjectReference>
3738
<ProjectReference Include="..\AspNetCoreModule-Setup\ANCMV2\ANCMV2.wixproj">
3839
<SetPlatform>Platform=x64</SetPlatform>
3940
<Name>AspNetCoreModuleV2_x64</Name>
41+
<BindName>AspNetCoreModuleV2_x64</BindName>
4042
<Project>f9bacb48-3bd7-4ec2-ae31-664e8703ec12</Project>
4143
<Private>True</Private>
4244
<DoNotHarvest>true</DoNotHarvest>
4345
</ProjectReference>
4446
<ProjectReference Include="..\AspNetCoreModule-Setup\ANCMV2\ANCMV2.wixproj">
4547
<SetPlatform>Platform=arm64</SetPlatform>
4648
<Name>AspNetCoreModuleV2_arm64</Name>
49+
<BindName>AspNetCoreModuleV2_arm64</BindName>
4750
<Project>f9bacb48-3bd7-4ec2-ae31-664e8703ec12</Project>
4851
<Private>True</Private>
4952
<DoNotHarvest>true</DoNotHarvest>
5053
</ProjectReference>
5154
<ProjectReference Include="..\HostOptions\HostOptions.wixproj">
5255
<Name>HostOptions</Name>
56+
<BindName>HostOptions</BindName>
5357
<Project>20248cd1-c5aa-4f42-ad88-bc260d64deea</Project>
5458
<Private>True</Private>
5559
<DoNotHarvest>True</DoNotHarvest>
@@ -62,18 +66,21 @@
6266
<ProjectReference Include="..\AspNetCoreModule-Setup\ANCMIISExpressV2\AncmIISExpressV2.wixproj">
6367
<SetPlatform>Platform=x86</SetPlatform>
6468
<Name>AspNetCoreModuleV2IISExpress_x86</Name>
69+
<BindName>AspNetCoreModuleV2IISExpress_x86</BindName>
6570
<Private>True</Private>
6671
<DoNotHarvest>true</DoNotHarvest>
6772
</ProjectReference>
6873
<ProjectReference Include="..\AspNetCoreModule-Setup\ANCMIISExpressV2\AncmIISExpressV2.wixproj">
6974
<SetPlatform>Platform=x64</SetPlatform>
7075
<Name>AspNetCoreModuleV2IISExpress_x64</Name>
76+
<BindName>AspNetCoreModuleV2IISExpress_x64</BindName>
7177
<Private>True</Private>
7278
<DoNotHarvest>true</DoNotHarvest>
7379
</ProjectReference>
7480
<ProjectReference Include="..\AspNetCoreModule-Setup\ANCMIISExpressV2\AncmIISExpressV2.wixproj">
7581
<SetPlatform>Platform=arm64</SetPlatform>
7682
<Name>AspNetCoreModuleV2IISExpress_arm64</Name>
83+
<BindName>AspNetCoreModuleV2IISExpress_arm64</BindName>
7784
<Private>True</Private>
7885
<DoNotHarvest>true</DoNotHarvest>
7986
</ProjectReference>

0 commit comments

Comments
 (0)