使用 mage.exe 更改产品名称

发布于 2024-11-18 23:10:46 字数 284 浏览 3 评论 0原文

我需要使用“产品”的新值更新应用程序的清单。使用 mage.exe 我可以更新名称和发布者,但不能更新产品。在 MageUI 中,您可以执行此操作,但我需要在命令行。

有解决方案或解决方法吗?

I need to update the application's manifest with a new value for 'product'. With mage.exe I can update the name and publisher but NOT the product. In MageUI you can do this, but I need to do it on the commandline.

Is there a solution or workaround for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

超可爱的懒熊 2024-11-25 23:10:46

我玩了一下,看来命令行工具确实缺乏这种功能。我想这样做是为了保持轻量(或者可能是成本问题)。

另一种方法是使用 GenerateApplicationManifest MSBuild 任务

示例:

<Target Name="Build">
    <GenerateApplicationManifest
        AssemblyName="myapp.exe"
        Product="My Product"
        ...
        OutputManifest="SimpleWinApp.exe.manifest">
        <Output
            ItemName="ApplicationManifest"
            TaskParameter="OutputManifest"/>
    </GenerateApplicationManifest>
</Target>

这为您提供了更多选择(事实上,您可以通过 MageUI 执行的所有操作都可以从这里完成),并且您可以绕过 mage.exe (及其限制)完全。

您应该能够在支持 MSBuild 的任何地方使用它(csproj 文件、TFS Build proj 文件等)。

I played around and it seems the command line tool indeed lacks this capability. I guess it was done for keeping it lightweight (or maybe cost issues).

Alternative would be to use the GenerateApplicationManifest MSBuild task:

Example:

<Target Name="Build">
    <GenerateApplicationManifest
        AssemblyName="myapp.exe"
        Product="My Product"
        ...
        OutputManifest="SimpleWinApp.exe.manifest">
        <Output
            ItemName="ApplicationManifest"
            TaskParameter="OutputManifest"/>
    </GenerateApplicationManifest>
</Target>

This gives you lot more options (in fact everything that you can do through MageUI, can be done from here) and you bypass mage.exe (and its limitations) totally.

You should be able to use it anywhere MSBuild is supported (csproj files, TFS Build proj files etc).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文