You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assemblymanifestVersion="1.0"xmlns="urn:schemas-microsoft-com:asm.v1"xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<assemblyIdentitytype="win32"name="myApp"version="1.0.0.0"processorArchitecture="*"
/>
<description>Contoso Example Application</description>
<applicationxmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<dpiAwarexmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">True</dpiAware>
</windowsSettings>
</application>
<compatibilityxmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- Windows 10 -->
<supportedOSId="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>s
</application>
</compatibility>
<trustInfoxmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<!-- UAC settings: - app should run at same integrity level as calling process - app does not need to manipulate windows belonging to higher-integrity-level processes-->
<requestedExecutionLevellevel="asInvoker"uiAccess="false"
/>
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentAssembly>
<assemblyIdentitytype="win64"name="Microsoft.Windows.Common-Controls"version="6.0.0.0"processorArchitecture="*"publicKeyToken="6595b64144ccf1df"language="*"/>
</dependentAssembly>
</dependency>
</assembly>
Upon running the release.bat file, the output file had been generated as readpdf.exe not as mentioned in the manifest file, and does not have the required icon?
The text was updated successfully, but these errors were encountered:
By chance, do you know if there's some way I can test stuff on Windows 11 without upgrading my only machine that has Windows 10 installed? I only learnt about Win 11 even existing from this issue you reported, I'm apparently quite out of the loop 😅
Not sure what do you mean by "not as mentioned in the manifest file"? Could I kindly ask you to try and explain it to me more simply, assuming I don't really know anything about manifest files (...which is true...)?
I'm at Windows 11, and have the below:
rsrc -manifest app.exe.manifest -ico=app.ico -o rsrc.syso go build -ldflags="-H windowsgui" readpdf.go
Upon running the
release.bat
file, the output file had been generated asreadpdf.exe
not as mentioned in the manifest file, and does not have the required icon?The text was updated successfully, but these errors were encountered: