blob: bf1ef15237fe3a72a1f90399af7c663405cfe569 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
<Fragment>
<ComponentGroup Id="ProductComponents" />
<Property Id="FORCERESTARTCA" Secure="yes" />
<Property Id="ForceRestartCA" Value=""shutdown.exe" -r -f -t 0" />
<CustomAction Id="ForceRestartCA" DllEntry="WixQuietExec" BinaryRef="Wix4UtilCA_X86" Execute="deferred" Return="ignore" />
<InstallExecuteSequence>
<Custom Action="ForceRestartCA" After="InstallFiles" Condition="FORCERESTARTCA = 1" />
</InstallExecuteSequence>
</Fragment>
</Wix>
|