Skip to content

Commit c450aa0

Browse files
Update walkthrough-manually-deploying-a-clickonce-application.md
1 parent 2626b47 commit c450aa0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

docs/deployment/walkthrough-manually-deploying-a-clickonce-application.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,13 @@ If you cannot use Visual Studio to deploy your [!INCLUDE[ndptecclick](../deploym
129129

130130
6. On the default **Name** tab, type the name and version number of this deployment. Also specify the **Processor** that your application is built for, such as x86.
131131

132-
7. Select the **Files** tab and click the ellipsis (**...**) button next to the **Application directory** text box. A **Browse For Folder** dialog box appears.
132+
7. Select the **Files** tab and then select the ellipsis (**...**) button next to the **Application directory** text box. A **Browse For Folder** dialog box appears.
133133

134-
8. Select the version subdirectory containing your application files, and then click **OK**.
134+
8. Select the version subdirectory containing your application files, and then select **OK**.
135135

136136
9. If you will deploy from Internet Information Services (IIS), select the **When populating add the .deploy extension to any file that does not have it** check box.
137137

138-
10. Click the **Populate** button to add all your application files to the file list. If your application contains more than one executable file, mark the main executable file for this deployment as the startup application by selecting **Entry Point** from the **File Type** drop-down list. (If your application contains only one executable file, *MageUI.exe* will mark it for you.)
138+
10. Go to the **Populate** button to add all your application files to the file list. If your application contains more than one executable file, mark the main executable file for this deployment as the startup application by selecting **Entry Point** from the **File Type** drop-down list. (If your application contains only one executable file, *MageUI.exe* will mark it for you.)
139139

140140
11. Select the **Permissions Required** tab and select the level of trust that you need your application to assert. The default is **FullTrust**, which will be suitable for most applications.
141141

@@ -147,9 +147,9 @@ If you cannot use Visual Studio to deploy your [!INCLUDE[ndptecclick](../deploym
147147

148148
If your certificate is kept in a certificate store accessible from your computer, select the **Sign with stored certificate** option, and select the certificate from the provided list.
149149

150-
14. Click **OK** to sign your application manifest. The **Save As** dialog box appears.
150+
14. Select **OK** to sign your application manifest. The **Save As** dialog box appears.
151151

152-
15. In the **Save As** dialog box, specify the version directory, and then click **Save**.
152+
15. In the **Save As** dialog box, specify the version directory, and then select **Save**.
153153

154154
16. Select **File**, **New**, **Deployment Manifest** from the menu to create your deployment manifest.
155155

@@ -163,9 +163,9 @@ If you cannot use Visual Studio to deploy your [!INCLUDE[ndptecclick](../deploym
163163

164164
21. Select the **Update Options** tab, and specify how often you would like this application to update. If your application uses <xref:System.Deployment.Application.UpdateCheckInfo> to check for updates itself, clear the **This application should check for updates** check box.
165165

166-
22. Select the **Application Reference** tab and then click the **Select Manifest** button. An open dialog box appears.
166+
22. Select the **Application Reference** tab and then go to the **Select Manifest** button. An open dialog box appears.
167167

168-
23. Select the application manifest that you created earlier and then click **Open**.
168+
23. Select the application manifest that you created earlier and then select **Open**.
169169

170170
24. Select **File**, **Save As** from the menu. A **Signing Options** dialog box appears prompting you to sign the deployment manifest.
171171

@@ -175,20 +175,20 @@ If you cannot use Visual Studio to deploy your [!INCLUDE[ndptecclick](../deploym
175175

176176
If your certificate is kept in a certificate store accessible from your computer, select the **Sign with stored certificate** option, and select the certificate from the provided list.
177177

178-
26. Click **OK** to sign your deployment manifest. The **Save As** dialog box appears.
178+
26. Go to **OK** to sign your deployment manifest. The **Save As** dialog box appears.
179179

180-
27. In the **Save As** dialog box, move up one directory to the root of your deployment and then click **Save**.
180+
27. In the **Save As** dialog box, move up one directory to the root of your deployment and then select **Save**.
181181

182182
28. Copy all of the files in the deployment directory to the deployment destination or media. This may be either a folder on a Web site or FTP site, a file share, or a CD-ROM.
183183

184184
29. Provide your users with the URL, UNC, or physical media required to install your application. If you provide a URL or a UNC, you must give your users the full path the deployment manifest. For example, if AppToDeploy is deployed to http://webserver01/ in the AppToDeploy directory, the full URL path would be http://webserver01/AppToDeploy/AppToDeploy.application.
185185

186186
## Next steps
187-
When you need to deploy a new version of the application, create a new directory named after the new version—for example, 1.0.0.1—and copy the new application files into the new directory. Next, you need to follow the previous steps to create and sign a new application manifest, and update and sign the deployment manifest. Be careful to specify the same higher version in both the *Mage.exe* `-New` and `-Update` calls, as [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] only updates higher versions, with the left-most integer most significant. If you used *MageUI.exe*, you can update the deployment manifest by opening it, selecting the **Application Reference** tab, clicking the **Select Manifest** button, and then selecting the updated application manifest.
187+
When you need to deploy a new version of the application, create a new directory named after the new version—for example, 1.0.0.1—and copy the new application files into the new directory. Next, you need to follow the previous steps to create and sign a new application manifest, and update and sign the deployment manifest. Be careful to specify the same higher version in both the *Mage.exe* `-New` and `-Update` calls, as [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] only updates higher versions, with the left-most integer most significant. If you used *MageUI.exe*, you can update the deployment manifest by opening it, selecting the **Application Reference** tab, go to the **Select Manifest** button, and then selecting the updated application manifest.
188188

189189
## See also
190190
- [Mage.exe (Manifest Generation and Editing Tool)](/dotnet/framework/tools/mage-exe-manifest-generation-and-editing-tool)
191191
- [MageUI.exe (Manifest Generation and Editing Tool, Graphical Client)](/dotnet/framework/tools/mageui-exe-manifest-generation-and-editing-tool-graphical-client)
192192
- [Publish ClickOnce applications](../deployment/publishing-clickonce-applications.md)
193193
- [ClickOnce deployment manifest](../deployment/clickonce-deployment-manifest.md)
194-
- [ClickOnce application manifest](../deployment/clickonce-application-manifest.md)
194+
- [ClickOnce application manifest](../deployment/clickonce-application-manifest.md)

0 commit comments

Comments
 (0)