按照以下步骤将 UAC 清单添加到作为资源嵌入的我的 C# 项目中。
第 1 步工作正常,我在项目中将 RC 文件创建为简单的文本文件,如上所述。
#include <winuser.h>
#define IDR_MANIFEST 1 // 2 for a DLL
IDR_MANIFEST RT_MANIFEST MOVEABLE PURE
{
"<assembly xmlns=""urn:schemas-microsoft-com:asm.v1"" manifestVersion=""1.0"">
<asmv3:trustInfo xmlns:asmv3=""urn:schemas-microsoft-com:asm.v3"">
<asmv3:security>
<asmv3:requestedPrivileges>
<asmv3:requestedExecutionLevel
level=""asInvoker""
uiAccess=""false"" />
</asmv3:requestedPrivileges>
</asmv3:security>
</asmv3:trustInfo>
</assembly>"
}
然后使用 Visual Studio 命令提示符,我在步骤 2 中得到以下输出:
c:\myproject>rc MyResourceFile.rc
Microsoft (R) Windows (R) Resource Compiler Version 6.1.6723.1
Copyright (C) Microsoft Corporation. All rights reserved.
ConfigurationManager.rc(4) : error RC2135 : file not found: 1
我认为这很愚蠢,对吧?
包括
包括