/ cmake / windows-app.manifest.in
windows-app.manifest.in
 1  <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 2  <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
 3    <assemblyIdentity
 4        type="win32"
 5        name="org.bitcoincore.${target}"
 6        version="${CLIENT_VERSION_MAJOR}.${CLIENT_VERSION_MINOR}.${CLIENT_VERSION_BUILD}.0"
 7    />
 8    <asmv3:application>
 9      <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">
10        <activeCodePage>UTF-8</activeCodePage>
11      </asmv3:windowsSettings>
12    </asmv3:application>
13    <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
14      <security>
15        <requestedPrivileges>
16          <requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
17        </requestedPrivileges>
18      </security>
19    </trustInfo>
20  </assembly>