Skip to content

Commit 4110466

Browse files
Pass /norestart to Hosting Bundle nested bundles (#47543)
Co-authored-by: wtgodbe <[email protected]>
1 parent 0e303ab commit 4110466

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/Installers/Windows/WindowsHostingBundle/DotNetCore.wxs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
Vital="yes"
3131
InstallCondition="(NativeMachine=&quot;$(var.NativeMachine_arm64)&quot;) AND (NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME=&quot;0&quot;)"
3232
InstallCommand="/quiet /norestart"
33-
RepairCommand="/quiet /repair"
33+
RepairCommand="/quiet /norestart /repair"
3434
Permanent="yes"
3535
DetectCondition="DotNetRedistLtsProductVersion_arm64 = v$(var.DotNetRedistLtsInstallerProductVersionarm64)">
3636
</ExePackage>
@@ -42,8 +42,8 @@
4242
Vital="yes"
4343
InstallCondition="VersionNT64 AND NOT (NativeMachine=&quot;$(var.NativeMachine_arm64)&quot;) AND (NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME=&quot;0&quot;)"
4444
InstallCommand="/quiet /norestart"
45-
RepairCommand="/quiet /repair"
46-
UninstallCommand="/quiet /uninstall"
45+
RepairCommand="/quiet /norestart /repair"
46+
UninstallCommand="/quiet /norestart /uninstall"
4747
DetectCondition="DotNetRedistLtsProductVersion_x64 = v$(var.DotNetRedistLtsInstallerProductVersionx64)">
4848
</ExePackage>
4949

@@ -54,8 +54,8 @@
5454
Vital="yes"
5555
InstallCondition="(NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME=&quot;0&quot;) AND (NOT OPT_NO_X86 OR OPT_NO_X86=&quot;0&quot;)"
5656
InstallCommand="/quiet /norestart"
57-
RepairCommand="/quiet /repair"
58-
UninstallCommand="/quiet /uninstall"
57+
RepairCommand="/quiet /norestart /repair"
58+
UninstallCommand="/quiet /norestart /uninstall"
5959
DetectCondition="DotNetRedistLtsProductVersion_x86 = v$(var.DotNetRedistLtsInstallerProductVersionx86)">
6060
</ExePackage>
6161
</PackageGroup>

src/Installers/Windows/WindowsHostingBundle/SharedFramework.wxs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
Vital="yes"
3131
InstallCondition="(NativeMachine=&quot;$(var.NativeMachine_arm64)&quot;) AND (NOT OPT_NO_SHAREDFX OR OPT_NO_SHAREDFX=&quot;0&quot;)"
3232
InstallCommand="/quiet /norestart"
33-
RepairCommand="/quiet /repair"
33+
RepairCommand="/quiet /norestart /repair"
3434
Permanent="yes"
3535
DetectCondition="SharedFxRedistProductVersion_arm64 = v$(var.SharedFxInstallerProductVersionarm64)">
3636
</ExePackage>
@@ -42,8 +42,8 @@
4242
Vital="yes"
4343
InstallCondition="VersionNT64 AND NOT (NativeMachine=&quot;$(var.NativeMachine_arm64)&quot;) AND (NOT OPT_NO_SHAREDFX OR OPT_NO_SHAREDFX=&quot;0&quot;)"
4444
InstallCommand="/quiet /norestart"
45-
RepairCommand="/quiet /repair"
46-
UninstallCommand="/quiet /uninstall"
45+
RepairCommand="/quiet /norestart /repair"
46+
UninstallCommand="/quiet /norestart /uninstall"
4747
DetectCondition="SharedFxRedistProductVersion_x64 = v$(var.SharedFxInstallerProductVersionx64)">
4848
</ExePackage>
4949

@@ -54,8 +54,8 @@
5454
Vital="yes"
5555
InstallCondition="(NOT OPT_NO_SHAREDFX OR OPT_NO_SHAREDFX=&quot;0&quot;) AND (NOT OPT_NO_X86 OR OPT_NO_X86=&quot;0&quot;)"
5656
InstallCommand="/quiet /norestart"
57-
RepairCommand="/quiet /repair"
58-
UninstallCommand="/quiet /uninstall"
57+
RepairCommand="/quiet /norestart /repair"
58+
UninstallCommand="/quiet /norestart /uninstall"
5959
DetectCondition="SharedFxRedistProductVersion_x86 = v$(var.SharedFxInstallerProductVersionx86)">
6060
</ExePackage>
6161

0 commit comments

Comments
 (0)