vote up 1 vote down star

What is the proper way to set the Company Name and Application Name in a ClickOnce Application?

I have a set of projects in a solution called RecordNavigator.
The GUI project is called RecordNavigator.Gui

When I publish the app - I want the Start menu to have a folder called Tyndall Software and the application shortcut to be called Record Navigator

Right now the folder says Organization and the shortcut says RecordNavigator.Gui The AssemblyInfo.cs file seems to have no effect. Is that normal?

flag

68% accept rate

3 Answers

vote up 4 vote down check

If you open your project's properties in Visual Studio and click on the 'Publish' tab, there should be an 'Options...' button under 'Install Mode and Settings'. There you can define the Publisher name ('Tyndall Software'), Product name ('Record Navigator'), and other such options.

link|flag
That did it. Awesome. – B. Tyndall Jun 10 at 19:36
I wonder where that gets stored?... not in the AssemblyInfo.cs. weird – B. Tyndall Jun 10 at 19:38
Um, in the deployment manifest. – John Weldon Jun 10 at 19:43
vote up 1 vote down

You need to change the ClickOnce manifest, not the assemblyinfo.cs...

There is an msbuild task for this: GenerateDeploymentManifest

	<GenerateDeploymentManifest
		AssemblyName="$(ApplicationIdentity)"
		AssemblyVersion="$(PublishVersion)"
		Description="$(ApplicationDescription)"
  EntryPoint="@(ApplicationManifest)"
		DeploymentUrl="$(PublishURL)/$(App).application"
		MapFileExtensions="true"
		OutputManifest="$(App).application"
		Product="$(ApplicationDescription)"
		Publisher="$(Publisher)"
		SupportUrl="$(SupportURL)" >
		<Output ItemName="DeploymentManifest" TaskParameter="OutputManifest" />
	</GenerateDeploymentManifest>

Set your $(Description) to the Application Name you want, $(Publisher) value to the Company Name, and the $(SupportURL) to the url you want to publish.

link|flag
+1 great info. thanks. – B. Tyndall Jun 15 at 16:27
vote up 0 vote down

Hi,

Just as Andy Mikula said - it's on the Publish section in the app's properties, but in my VS2008 it's under the Options button and the Description section, the properties are called Publisher Name and Product Name.

You'll find all the ClickOnce settings in the .csproj file for the application. E.g. the fields you want to update exist as:

<ProductName>...</ProductName>
<PublisherName>...</PublisherName>

Side note, these values are not part of the application's ClickOnce identity - so you can change them for an application and the next time your customers update the name of the app will change - I'm not sure about the start menu folder though.

link|flag
They are NOT part of the ClickOnce identity, but they will update the name of the app? is that right? confusing. – B. Tyndall Jun 15 at 16:26
Is right? Yep. Confusing? Yep. I just did a test, published once with product name "A". Published again with new product name "B". Outcome: When clicking on the "A" app in the start menu, I got the question "there is an update available for A...". Click OK and the progress window showed "downloading update for B...". Directly after the install finished the start menu shortcut changed name to "B". – andyhammar Jun 15 at 18:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.