mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
dd2fe4e126
- Improve UI usage and wizard transitions (Work In Progress). - Add interfacing code that display installation status. - When the user attempts to cancel the installation during file copying, pause the file copying, and restart it if the user changes it mind and wants to continue the installation. Otherwise file copying is properly halted.
26 lines
801 B
XML
26 lines
801 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|
<description>ReactOS Setup</description>
|
|
<dependency>
|
|
<dependentAssembly>
|
|
<assemblyIdentity
|
|
type="win32"
|
|
name="Microsoft.Windows.Common-Controls"
|
|
version="6.0.0.0"
|
|
publicKeyToken="6595b64144ccf1df"
|
|
processorArchitecture="*"
|
|
language="*"
|
|
/>
|
|
</dependentAssembly>
|
|
</dependency>
|
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
<security>
|
|
<requestedPrivileges>
|
|
<requestedExecutionLevel
|
|
level="requireAdministrator"
|
|
uiAccess="false"
|
|
/>
|
|
</requestedPrivileges>
|
|
</security>
|
|
</trustInfo>
|
|
</assembly>
|