修改程序的发布名称?
我有一个 C# 程序,第一次启动时命名得很糟糕,现在希望对其进行更改。我更改了解决方案名称,但这似乎并没有改变程序发布时的名称。
我的问题是如何更改发布名称。
I have a C# program that I poorly named when I first started it and want it changed now. I've changed the solution name, but that doesn't appear to change what the program is named when it publishes.
My question is how to change the publish name.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在VS中,右键单击项目并单击属性。
发布选项卡>选项>描述
您可以设置发布者名称、套件名称、产品名称等。
编辑>发表评论后,您可能正在寻找程序集名称:
属性>应用程序>程序集名称
In VS, right click the project and click properties.
Publish Tab>Options>Description
You can set the publisher name, suite name, product name etc.
edit> After your comment, then you might be looking for the Assembly Name:
Properties>Application>Assembly Name
如果您引用 DLL 的名称,则必须转到项目属性(而不是解决方案)并在应用程序属性选项卡中为其指定名称。
If you are referring to the name of the DLL, then you've to go to the project properties (not the solution) and give it the name inside the application properties tab.