Skip to content

Commit 4a47904

Browse files
authored
Pass /norestart to Hosting Bundle nested bundles (#47545)
1 parent 218a279 commit 4a47904

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/Installers/Windows/WindowsHostingBundle/DotNetCore.wxs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
Vital="yes"
2424
InstallCondition="VersionNT64 AND (NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0")"
2525
InstallCommand="/quiet /norestart"
26-
RepairCommand="/quiet /repair"
27-
UninstallCommand="/quiet /uninstall"
26+
RepairCommand="/quiet /norestart /repair"
27+
UninstallCommand="/quiet /norestart /uninstall"
2828
DetectCondition="DotNetRedistLtsProductVersion_x64 = v$(var.DotNetRedistLtsInstallerProductVersionx64)">
2929
</ExePackage>
3030

@@ -35,8 +35,8 @@
3535
Vital="yes"
3636
InstallCondition="(NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME=&quot;0&quot;) AND (NOT OPT_NO_X86 OR OPT_NO_X86=&quot;0&quot;)"
3737
InstallCommand="/quiet /norestart"
38-
RepairCommand="/quiet /repair"
39-
UninstallCommand="/quiet /uninstall"
38+
RepairCommand="/quiet /norestart /repair"
39+
UninstallCommand="/quiet /norestart /uninstall"
4040
DetectCondition="DotNetRedistLtsProductVersion_x86 = v$(var.DotNetRedistLtsInstallerProductVersionx86)">
4141
</ExePackage>
4242
</PackageGroup>

src/Installers/Windows/WindowsHostingBundle/SharedFramework.wxs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
Vital="yes"
2424
InstallCondition="VersionNT64 AND (NOT OPT_NO_SHAREDFX OR OPT_NO_SHAREDFX=&quot;0&quot;)"
2525
InstallCommand="/quiet /norestart"
26-
RepairCommand="/quiet /repair"
27-
UninstallCommand="/quiet /uninstall"
26+
RepairCommand="/quiet /norestart /repair"
27+
UninstallCommand="/quiet /norestart /uninstall"
2828
DetectCondition="SharedFxRedistProductVersion_x64 = v$(var.SharedFxInstallerProductVersionx64)">
2929
</ExePackage>
3030

@@ -35,8 +35,8 @@
3535
Vital="yes"
3636
InstallCondition="(NOT OPT_NO_SHAREDFX OR OPT_NO_SHAREDFX=&quot;0&quot;) AND (NOT OPT_NO_X86 OR OPT_NO_X86=&quot;0&quot;)"
3737
InstallCommand="/quiet /norestart"
38-
RepairCommand="/quiet /repair"
39-
UninstallCommand="/quiet /uninstall"
38+
RepairCommand="/quiet /norestart /repair"
39+
UninstallCommand="/quiet /norestart /uninstall"
4040
DetectCondition="SharedFxRedistProductVersion_x86 = v$(var.SharedFxInstallerProductVersionx86)">
4141
</ExePackage>
4242
</PackageGroup>

0 commit comments

Comments
 (0)