sooprise
sooprise

Reputation: 23187

Modifying The Published Name Of A Program?

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.

Upvotes: 2

Views: 4919

Answers (2)

Nick DeVore
Nick DeVore

Reputation: 10166

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.

Upvotes: 0

Steven Evers
Steven Evers

Reputation: 17196

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

Upvotes: 10

Related Questions