Skip to content

[release/6.0] Pass /norestart to Hosting Bundle nested bundles #47545

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Installers/Windows/WindowsHostingBundle/DotNetCore.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
Vital="yes"
InstallCondition="VersionNT64 AND (NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0")"
InstallCommand="/quiet /norestart"
RepairCommand="/quiet /repair"
UninstallCommand="/quiet /uninstall"
RepairCommand="/quiet /norestart /repair"
UninstallCommand="/quiet /norestart /uninstall"
DetectCondition="DotNetRedistLtsProductVersion_x64 = v$(var.DotNetRedistLtsInstallerProductVersionx64)">
</ExePackage>

Expand All @@ -35,8 +35,8 @@
Vital="yes"
InstallCondition="(NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME=&quot;0&quot;) AND (NOT OPT_NO_X86 OR OPT_NO_X86=&quot;0&quot;)"
InstallCommand="/quiet /norestart"
RepairCommand="/quiet /repair"
UninstallCommand="/quiet /uninstall"
RepairCommand="/quiet /norestart /repair"
UninstallCommand="/quiet /norestart /uninstall"
DetectCondition="DotNetRedistLtsProductVersion_x86 = v$(var.DotNetRedistLtsInstallerProductVersionx86)">
</ExePackage>
</PackageGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
Vital="yes"
InstallCondition="VersionNT64 AND (NOT OPT_NO_SHAREDFX OR OPT_NO_SHAREDFX=&quot;0&quot;)"
InstallCommand="/quiet /norestart"
RepairCommand="/quiet /repair"
UninstallCommand="/quiet /uninstall"
RepairCommand="/quiet /norestart /repair"
UninstallCommand="/quiet /norestart /uninstall"
DetectCondition="SharedFxRedistProductVersion_x64 = v$(var.SharedFxInstallerProductVersionx64)">
</ExePackage>

Expand All @@ -35,8 +35,8 @@
Vital="yes"
InstallCondition="(NOT OPT_NO_SHAREDFX OR OPT_NO_SHAREDFX=&quot;0&quot;) AND (NOT OPT_NO_X86 OR OPT_NO_X86=&quot;0&quot;)"
InstallCommand="/quiet /norestart"
RepairCommand="/quiet /repair"
UninstallCommand="/quiet /uninstall"
RepairCommand="/quiet /norestart /repair"
UninstallCommand="/quiet /norestart /uninstall"
DetectCondition="SharedFxRedistProductVersion_x86 = v$(var.SharedFxInstallerProductVersionx86)">
</ExePackage>
</PackageGroup>
Expand Down