How to: Specify the location where end users will install from
Applies to: Visual Studio Visual Studio for Mac
Note
This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
When publishing a ClickOnce application, the location where users go to download and install the application is not necessarily the location where you initially publish the application. For example, in some organizations a developer might publish an application to a staging server, and then an administrator would move the application to a Web server.
In this case, you can use the Installation URL
property to specify the Web server where users will go to download the application. This is necessary so that the application manifest knows where to look for updates.
The Installation URL
property can be set on the Publish page of the Project Designer.
Note
The Installation URL
property can also be set using the PublishWizard. For more information, see How to: Publish a ClickOnce application using the Publish Wizard.
To specify an Installation URL
With a project selected in Solution Explorer, on the Project menu, click Properties.
Click the Publish tab.
In the Installation URL field, enter the installation location using a fully qualified URL using the format
https://www.contoso.com/ApplicationName
, or a UNC path using the format\Server\ApplicationName
.