diff options
Diffstat (limited to 'src/wixlib/MsiRMFilesInUse.wxs')
-rw-r--r-- | src/wixlib/MsiRMFilesInUse.wxs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/wixlib/MsiRMFilesInUse.wxs b/src/wixlib/MsiRMFilesInUse.wxs index c6004253..9881f0e6 100644 --- a/src/wixlib/MsiRMFilesInUse.wxs +++ b/src/wixlib/MsiRMFilesInUse.wxs | |||
@@ -1,5 +1,4 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <!-- 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. --> |
2 | <!-- 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. --> | ||
3 | 2 | ||
4 | 3 | ||
5 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 4 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
@@ -8,11 +7,11 @@ | |||
8 | <Property Id="WixUIRMOption" Value="UseRM" /> | 7 | <Property Id="WixUIRMOption" Value="UseRM" /> |
9 | <Dialog Id="MsiRMFilesInUse" Width="370" Height="270" Title="!(loc.MsiRMFilesInUse_Title)" KeepModeless="yes"> | 8 | <Dialog Id="MsiRMFilesInUse" Width="370" Height="270" Title="!(loc.MsiRMFilesInUse_Title)" KeepModeless="yes"> |
10 | <Control Id="OK" Type="PushButton" X="240" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUIOK)"> | 9 | <Control Id="OK" Type="PushButton" X="240" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUIOK)"> |
11 | <Publish Event="EndDialog" Value="Return">1</Publish> | 10 | <Publish Event="EndDialog" Value="Return" /> |
12 | <Publish Event="RMShutdownAndRestart" Value="0">WixUIRMOption~="UseRM"</Publish> | 11 | <Publish Event="RMShutdownAndRestart" Value="0" Condition="WixUIRMOption~="UseRM"" /> |
13 | </Control> | 12 | </Control> |
14 | <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)"> | 13 | <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)"> |
15 | <Publish Event="EndDialog" Value="Exit">1</Publish> | 14 | <Publish Event="EndDialog" Value="Exit" /> |
16 | </Control> | 15 | </Control> |
17 | 16 | ||
18 | <Control Id="ShutdownOption" Type="RadioButtonGroup" X="26" Y="190" Width="305" Height="45" Property="WixUIRMOption"> | 17 | <Control Id="ShutdownOption" Type="RadioButtonGroup" X="26" Y="190" Width="305" Height="45" Property="WixUIRMOption"> |