33

如何将程序集清单添加到我的 .NET 可执行文件?


程序集清单是添加到具有资源类型RT_MANIFEST(24) 的 .NET 可移植可执行文件 (PE) 的 XML 文件。

程序集清单用于声明有关可执行文件的许多内容,例如:

  • 如果我想禁用 DPI 缩放,因为我是一个优秀的开发人员:

    <!-- We are high-dpi aware on Windows Vista -->
    <asmv3:application xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
       <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
          <dpiAware>true</dpiAware>
       </asmv3:windowsSettings>
    </asmv3:application>
    
  • 我可以声明我是在 Windows 7 上设计和测试的,我应该继续依赖 Windows 7 中的任何错误

    <!-- We were designed and tested on Windows 7 -->
    <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
       <application>
          <!--The ID below indicates application support for Windows 7 -->
          <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
       </application>
    </compatibility>
    
  • 我可以声明我是一名优秀的开发人员,不需要文件和注册表虚拟化

    <!-- Disable file and registry virtualization -->
    <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
       <security>
          <requestedPrivileges>
             <requestedExecutionLevel level="asInvoker" uiAccess="false"/>
          </requestedPrivileges>
       </security>
    </trustInfo>
    
  • 我可以声明我依赖于Microsoft 公共控件库的特定版本 6:

    <!-- Dependency on Common Controls version 6 -->
    <dependency>
       <dependentAssembly>
          <assemblyIdentity
                type="win32"
                name="Microsoft.Windows.Common-Controls"
                version="6.0.0.0"
                processorArchitecture="X86"
                publicKeyToken="6595b64144ccf1df"
                language="*"/>
       </dependentAssembly>
    </dependency>
    
  • 我可以声明我依赖于特定版本的 GDI+:

    <dependency>
       <dependentAssembly>
          <assemblyIdentity type="win32" name="Microsoft.Windows.GdiPlus" version="1.0.0.0" processorArchitecture="x86"
                publicKeyToken="6595b64144ccf1df" language="*" />
       </dependentAssembly>
    </dependency>
    

在过去,我们会创建一个资源脚本文件 ( *.rc),例如:

wumpa.rc

   1    24    AssemblyManifest.xml

将该文件添加到项目中,编译器将编译该.rc文件;包括最终可执行映像中的资源。

除了Visual Studio 2010 似乎没有办法将资源脚本文件添加到项目中。

如何在 Visual Studio 2010 中将资源脚本添加到项目中?

如何将程序集清单添加到 Visual Studio 2010 中的项目?

注意:任何解决方案都必须在具有源代码控制和多个开发人员的环境中工作(例如,可能未安装的二进制文件的硬编码路径会破坏构建并且无法工作)。

奖金喋喋不休


更新:Michael Fox 建议项目属性对话框可用于包含程序集清单,但他没有指出位置

在此处输入图像描述


更新:我尝试过的事情:

  • 从项目属性屏幕中,选择Application。选择单选选项Icon 和 Manifest。在清单下保留默认选项Embed manifest with default settings

在此处输入图像描述

不起作用,因为它嵌入了具有默认设置的清单,而不是我的设置。

  • Manifest下,将组合选项更改为Create application without a manifest

    在此处输入图像描述

    不起作用,因为它没有嵌入清单

  • 资源下选择资源文件单选选项:

    在此处输入图像描述

    不起作用,因为您无法选择程序集清单(或包含程序集清单的资源脚本)

  • Resources下,选择Resource File单选选项,然后输入程序集清单 XML 文件的路径:

在此处输入图像描述

不起作用,因为 Visual Studio 在显示程序集清单时会窒息

在此处输入图像描述

  • Resources下,选择Resource File单选选项,然后输入资源脚本文件的路径:

在此处输入图像描述

不起作用,因为 Visual Studio 在呈现资源脚本时会窒息

在此处输入图像描述

  • 添加AssemblyManifest.xml到我的项目中,然后在Manifest组合框中查找它:

    在此处输入图像描述

    不起作用,因为 Assembly Manifest 文件未列为选项

我还有很多其他可以截图的东西(添加一个 .rc 文件到解决方案中,在下拉列表中查找它,选择“no manifest”并将wumpa.rc构建操作更改为各种东西,.rc使用单独的资源编译器构建文件,手动或 pre-build/msbuild 步骤,然后选择该.res文件作为我的资源)。我将停止在我的问题中添加额外的内容,并希望得到答案。

4

3 回答 3

27

如果您想将自定义信息添加到应用程序的清单中,您可以按照以下步骤操作:

  1. 在解决方案资源管理器中右键单击该项目。
  2. 单击“添加新项目”。
  3. 选择“应用程序清单文件”。

这会为您的项目添加一个名为的文件app.manifest,您可以根据需要打开和修改该文件。


类似的步骤,带有屏幕截图,来自MSDN 上的Declaring Managed Applications As DPI-Aware

  1. 在解决方案资源管理器中,右键单击您的项目,指向Add,然后单击New Item

  2. 在“添加新项目”对话框中,选择“应用程序清单文件”,然后单击“添加” 。app.manifest 文件出现。

    在此处输入图像描述

  3. 将以下文本复制并粘贴到app.manifest文件中,然后保存。

    <?xml version="1.0" encoding="utf-8"?>
    <asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" 
                    xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" 
                    xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" 
                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    
      <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
    
        <!-- Disable file and registry virtualization. -->
        <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
          <security>
            <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
             <requestedExecutionLevel level="asInvoker" uiAccess="false" />
             <!--  <requestedExecutionLevel  level="asInvoker" uiAccess="false" />
                   <requestedExecutionLevel  level="requireAdministrator" uiAccess="false" />
                   <requestedExecutionLevel  level="highestAvailable" uiAccess="false" />
             -->
            </requestedPrivileges>
          </security>
        </trustInfo>
    
        <!-- We are high-dpi aware on Windows Vista -->
        <asmv3:application xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
          <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
            <dpiAware>true</dpiAware>
          </asmv3:windowsSettings>
        </asmv3:application>
    
        <!-- Declare that we were designed to work with Windows Vista and Windows 7-->
        <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
          <application>
            <!--The ID below indicates application support for Windows Vista -->
            <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
            <!--The ID below indicates application support for Windows 7 -->
            <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
          </application>
        </compatibility>
    
        <!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
        <dependency>
          <dependentAssembly>
            <assemblyIdentity
                type="win32"
                name="Microsoft.Windows.Common-Controls"
                version="6.0.0.0"
                processorArchitecture="*"
                publicKeyToken="6595b64144ccf1df"
                language="*"
            />
          </dependentAssembly>
        </dependency>
    
      </asmv1:assembly>
    
  4. 在解决方案资源管理器中,右键单击项目,然后单击属性以验证是否使用了app.manifest

    在此处输入图像描述

  5. 您的应用程序现在显示为“为 Windows 设计”,并且是

    • 禁用文件和注册表虚拟化
    • 禁用应用程序的 DWM 缩放
    • 宣布您是在 Windows 7 和 Windows Vista 上设计和测试的
    • 依赖于公共控件库版本 6(允许公共控件使用视觉样式)
于 2012-01-12T23:53:35.340 回答
6

我安装了带有 Service Pack 1 的 Visual Studio 2010 Professional。我在 Windows 7 Ultimate 64 位上运行。如果我按照这些说明进行操作,项目属性会在资源块中显示“使用默认设置嵌入清单”,并且该选项也被禁用!当我构建时,清单没有嵌入到 DLL 中,因为我通过在资源视图中打开 DLL 进行了验证。

但是,如果我:

  1. 在解决方案资源管理器中找到添加的 app.manifest 文件
  2. 右键单击并选择属性
  3. 将 Build Action 属性从“None”更改为“Embedded Resource”
  4. 重建

清单文件已正确嵌入,我可以通过将 DLL 加载到资源视图中来验证这一点。应用程序属性中的清单设置仍显示为“使用默认设置嵌入清单”并且仍处于禁用状态。

于 2012-08-02T14:32:13.997 回答
2

在 Visual Studio 2008 中,这可以在“项目属性”窗口中完成。我几乎可以肯定它在 2010 年也是如此。右键单击您的项目,选择属性,然后在应用程序选项卡中选择一个清单。您必须先将其添加到您的项目中,但您可以通过添加现有文件轻松完成此操作。

于 2011-11-15T19:26:37.920 回答