How do I change the deployment provider URL in the ClickOnce manifest file?

(Disclaimer: I am using the Japanese version of Visual Studio 2005, and although I literally translated the menu names of my Visual Studio into English, this will probably differ from how they are actually in the original release)

In any case, I am trying to publish the ClickOnce application on the server, but the generated manifest file (.application) has a value in the codePowerider attribute of the scanner, which I cannot change at all.

<deploymentProvider codebase="http://foo.jp/foo/ClickOnce/fooApp.application" /> 

I expected the value to be changed by placing the path in a field where we could indicate the path to the location (I mean, Solution Explore -> Property -> Publish tub -> Publish Location), but can I miss something else?

Of course, I can manually change it on my NotePad, but I do not think this is normal behavior!

+6
source share
2 answers

There is a Mage or MageUI utility that Microsoft provides for editing and managing the manifest for deploying clickonce. I mainly used it to modify and re-sign the applications that I needed to deploy to a remote location.

link: http://msdn.microsoft.com/en-us/library/xhctdw55(v=vs.80).aspx

+2
source

enter image description here

Go to Project Properties (dbl-click on "Properties" in Solution Explorer).

Click the Publish tab. Change the configuration.

(see screenshot)

+2
source

Source: https://habr.com/ru/post/921111/


All Articles