如何生成名称与主程序集不同的 .EXE?

发布于 2024-10-30 02:57:58 字数 120 浏览 1 评论 0原文

我有一个 WPF 应用程序,其中有大量引用主程序集的 XAML 代码(用于小部件、样式等)。

但现在我需要更改 .EXE 的名称,而不是其源主程序集,以免更新这么多依赖项。

如何做到尽可能简单?

I have a WPF application with lot of XAML code referencing the main assembly (for widgets, styles and these things).

But now I need to change the name of the .EXE, but not its source main assembly for not updating so many dependencies.

How to do it as simple as possible?

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

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

发布评论

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

评论(3

你与昨日 2024-11-06 02:57:58

转到项目的属性并更改“应用程序”选项卡上的“程序集名称”设置:

在此处输入图像描述

Go to the project's properties and change "Assembly name" setting on the "Application" tab:

enter image description here

合久必婚 2024-11-06 02:57:58

构建后只需要更改文件名吗?您可以使用构建后脚本。

You just need to change the file name after the build? You could use a post-build script.

卖梦商人 2024-11-06 02:57:58

您可以将 xml 命名空间定义放入 assembly.cs 文件(在属性文件夹中)。在 XAML 中,使用 xml 命名空间定义而不是您的命名空间来引用代码。

http://msdn.microsoft.com/en-us/library/ms747086.aspx

You could put an xml namespace definition in your assembly.cs file (in properties folder). The in your XAML reference the code using the xml namespace defination instead of your namespace.

http://msdn.microsoft.com/en-us/library/ms747086.aspx

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