Fix runtime exception when running application compiled with clang on Windows
It gives the following error: The application has failed to start because its side-by-side configuration is incorrect Fix this by specifying the xml namespace. Examples on the Microsoft website use v2, so change this too.
This commit is contained in:
parent
7b5a01d971
commit
eaab67dee1
2 changed files with 14 additions and 14 deletions
|
|
@ -5,13 +5,13 @@
|
|||
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*" />
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<security>
|
||||
<requestedPrivileges>
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
<asmv2:trustInfo xmlns:asmv2="urn:schemas-microsoft-com:asm.v2">
|
||||
<asmv2:security>
|
||||
<asmv2:requestedPrivileges>
|
||||
<asmv2:requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
</asmv2:requestedPrivileges>
|
||||
</asmv2:security>
|
||||
</asmv2:trustInfo>
|
||||
<asmv3:application>
|
||||
<asmv3:windowsSettings>
|
||||
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
|
||||
|
|
|
|||
|
|
@ -5,13 +5,13 @@
|
|||
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*" />
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<security>
|
||||
<requestedPrivileges>
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
<asmv2:trustInfo xmlns:asmv2="urn:schemas-microsoft-com:asm.v2">
|
||||
<asmv2:security>
|
||||
<asmv2:requestedPrivileges>
|
||||
<asmv2:requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
</asmv2:requestedPrivileges>
|
||||
</asmv2:security>
|
||||
</asmv2:trustInfo>
|
||||
<asmv3:application>
|
||||
<asmv3:windowsSettings>
|
||||
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2, system</dpiAwareness>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue