Skip to content

Commit 187f813

Browse files
authored
Merge pull request #4450 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/MicrosoftDocs/visualstudio-docs (branch master)
2 parents fe16de3 + b3b4e9b commit 187f813

File tree

866 files changed

+5
-1088
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

866 files changed

+5
-1088
lines changed

.markdownlint.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"MD007": false,
1010
"MD009": false,
1111
"MD011": false,
12-
"MD012": false,
1312
"MD013": false,
1413
"MD019": false,
1514
"MD020": false,

docs/azure/includes/storage-try-azure-tools.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@
55
> [Microsoft Azure Storage Explorer](/azure/vs-azure-tools-storage-manage-with-storage-explorer) is a free, standalone app from Microsoft. You can use it to work visually with Azure Storage data on Windows, macOS, and Linux.
66
>
77
>
8-

docs/azure/vs-azure-tools-multiple-services-project-configurations.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ Configuration settings are managed and modified in Visual Studio using property
2323

2424
For information about the underlying schemas for the service definition and service configuration files, see the [.csdef XML Schema](/azure/cloud-services/schema-csdef-file) and [.cscfg XML Schema](/azure/cloud-services/schema-cscfg-file) articles. For more information about service configuration, see [How to Configure Cloud Services](/azure/cloud-services/cloud-services-how-to-configure-portal).
2525

26-
2726
## Configuration page
2827

2928
### Service Configuration

docs/azure/vs-azure-tools-publish-webapplicationwebsite-windows-powershell-script.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Publishes a web project to an Azure website. The script creates the required res
2222
-SendHostMessagesToOutput
2323
-Verbose
2424

25-
2625
## Configuration
2726
The path to the JSON configuration file that describes the details of the deployment.
2827

docs/code-quality/C26401.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,4 @@ ms.workload:
1616
# C26401 DONT_DELETE_NON_OWNER
1717
This check detects places where moving to `owner<T>` can be a good option for the first stage of refactoring. Like C26400 it enforces rules I.11 and R.3, but focuses on the "release" portion of the pointer lifetime. It warns on any call to operator `delete` if its target is neither an `owner<T>` nor an implicitly assumed owner. For more information, see [C26400](c26400.md) regarding the auto declarations. This does include expressions that refer to global variables, formals, and so on.
1818

19-
2019
Warnings C26400 and C26401 always occur with [C26409](c26409.md), but they are more appropriate for scenarios where immediate migration to smart pointers is not feasible. In such cases the `owner<T>` concept can be adopted first and C26409 may be temporarily suppressed.

docs/code-quality/C26402.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,4 @@ ms.workload:
1616
# C26401 DONT_DELETE_NON_OWNER
1717
This check detects places where moving to `owner<T>` can be a good option for the first stage of refactoring. Like C26400 it enforces rules I.11 and R.3, but focuses on the "release" portion of the pointer lifetime. It warns on any call to operator `delete` if its target is neither an `owner<T>` nor an implicitly assumed owner. For more information, see [C26400](c26400.md) regarding the auto declarations. This does include expressions that refer to global variables, formals, and so on.
1818

19-
2019
Warnings C26400 and C26401 always occur with [C26409](c26409.md), but they are more appropriate for scenarios where immediate migration to smart pointers is not feasible. In such cases the `owner<T>` concept can be adopted first and C26409 may be temporarily suppressed.

docs/code-quality/annotating-locking-behavior.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ To avoid concurrency bugs in your multithreaded program, always follow an approp
9999
|`_Interlocked_operand_`|The annotated function parameter is the target operand of one of the various Interlocked functions. Those operands must have specific additional properties.|
100100
|`_Write_guarded_by_(expr)`|Annotates a variable and indicates that whenever the variable is modified, the lock count of the lock object that's named by `expr` is at least one.|
101101

102-
103102
## Smart Lock and RAII Annotations
104103
Smart locks typically wrap native locks and manage their lifetime. The following table lists annotations that can be used with smart locks and RAII coding patterns with support for `move` semantics.
105104

docs/code-quality/c26446.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ The Bounds profile of the C++ Core Guidelines tries to eliminate unsafe manipula
2222

2323
This rule helps to find places where potentially unchecked access is performed via calls to operator\[](). In most cases such calls can be easily replaced by `gsl::at()`.
2424

25-
2625
- Access to arrays with known size is flagged when non-constant index is used in a subscript operator. Constant indices are handled by [C26483 STATIC_INDEX_OUT_OF_RANGE](c26483.md).
2726
- The logic to warn on overloaded operator[] calls is more complex:
2827
- If index is non-integral, the call is ignored. This also handles indexing in standard maps since parameters in such operators are passed by reference.

docs/code-quality/ca2000-dispose-objects-before-losing-scope.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ Public Function OpenPort2(ByVal PortName As String) As SerialPort
142142
tempPort.Close()
143143
End If
144144

145-
146145
End Try
147146

148147
Return port

docs/code-quality/code-analysis-for-cpp-corecheck.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,15 +135,12 @@ Function '%symbol%' should be marked with 'override'. See [C.128: Virtual functi
135135
[C26435 SINGLE_VIRTUAL_SPECIFICATION](c26435.md)
136136
Function '%symbol%' should specify exactly one of 'virtual', 'override', or 'final'. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md).
137137

138-
139138
[C26436 NEED_VIRTUAL_DTOR](C26436.md)
140139
The type '%symbol%' with a virtual function needs either public virtual or protected nonvirtual destructor. See [C++ Core Guidelines C.35](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c35-a-base-class-destructor-should-be-either-public-and-virtual-or-protected-and-nonvirtual).
141140

142-
143141
[C26443 NO_EXPLICIT_DTOR_OVERRIDE](c26443.md)
144142
Overriding destructor should not use explicit 'override' or 'virtual' specifiers. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md).
145143

146-
147144
## TYPE Group
148145

149146
[C26437 DONT_SLICE](C26437.md)
@@ -271,7 +268,6 @@ Consider using `gsl::finally` if final action is intended. See [C++ Core Guideli
271268
`gsl::span` or `std::string_view` created from a temporary will be invalid when the temporary is invalidated. See
272269
[C++ Core Guidelines: GSL.view: Views](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#gslview-views).
273270

274-
275271
## Deprecated Warnings
276272

277273
The following warnings are present in an early experimental rule set of the core guidelines checker, but are now deprecated and can be safely ignored. The warnings are superceded by warnings from the list above.

docs/code-quality/cpp-core-guidelines-warnings.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ As new rules are added to the C++ Core Guidelines Checker, the number of warning
9090

9191
- **Type Rules** enforce the [Type profile of the C++ Core Guidelines](http://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#prosafety-type-safety-profile).
9292

93-
9493
You can choose to limit warnings to just one or a few of the groups. The **Native Minimum** and **Native Recommended** rule sets include C++ Core Check rules in addition to other PREfast checks. To see the available rule sets, open the Project Properties dialog, select **Code Analysis\General**, open the dropdown in the **Rule Sets** combo-box, and pick **Choose multiple rule sets**. For more information about using Rule Sets in Visual Studio, see [Using Rule Sets to Group Code Analysis Rules](using-rule-sets-to-group-code-analysis-rules.md).
9594

9695
## Macros

docs/data-tools/working-with-a-conceptual-model-wcf-data-services.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ When you use a conceptual model to describe the data in a database, you can quer
1919

2020
You can use conceptual models with WCF Data Services applications. The following topics show how to query data through a conceptual model.
2121

22-
2322
| Topic | Description |
2423
| - | - |
2524
| [How to: Execute Data Service queries](/dotnet/framework/data/wcf/how-to-execute-data-service-queries-wcf-data-services) | Shows how to query a data service from a [!INCLUDE[dnprdnshort](../code-quality/includes/dnprdnshort_md.md)] application. |

docs/debugger/c-cpp-assertions.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ VERIFY ( myFnctn(0)==1 ) // safe
100100
## <a name="BKMK_CRT_assertions"></a> CRT assertions
101101
The CRTDBG.H header file defines the [_ASSERT and _ASSERTE macros](/cpp/c-runtime-library/reference/assert-asserte-assert-expr-macros) for assertion checking.
102102

103-
104103
| Macro | Result |
105104
|------------| - |
106105
| `_ASSERT` | If the specified expression evaluates to FALSE, the file name and line number of the `_ASSERT`. |

docs/debugger/create-custom-views-of-native-objects.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ You can define different Natvis views to display types in different ways. For ex
148148
</Type>
149149
```
150150

151-
152151
In the **Watch** window, use the **,view** format specifier to specify an alternate view. The simple view appears as **vec,view(simple)**:
153152

154153
![Watch window with simple view](../debugger/media/watch-simpleview.png "Watch window with simple view")

docs/debugger/debugging-windows-store-and-windows-universal-apps.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,5 @@ The Visual Studio debugger provides complete support for debugging UWP apps. See
2424
|Debug deployed apps, both local and remote.|[Debug an installed app package](../debugger/debug-installed-app-package.md)|
2525
|Analyze the effect of the ContentPrefetcher class on UWP apps.|[Prefetch content for UWP apps](../debugger/prefetch-content-for-windows-store-apps.md)|
2626

27-
2827
## See Also
2928
- [Analyze code quality using static code analysis](/visualstudio/code-quality/code-analysis-for-managed-code-overview)

docs/debugger/diagnose-problems-after-deployment.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ Visual Studio 2017 and later versions do not include the *BuildInfo.config* file
4040

4141
* If you need to use IntelliTrace, open the project in Visual Studio and load the symbol files from the matching build. You can load symbol files from the **Modules** window or by configuring symbols in **Tools** > **Options** > **Debugging** > **Symbols**.
4242

43-
4443
#### <a name="TFS2013"></a> Team Foundation Server 2013
4544
Set up your build pipeline to add the locations of your source, build, and symbols to the build manifest (BuildInfo.config file). Team Foundation Build automatically creates this file and puts it in your project's output folder.
4645

docs/debugger/graphics/graphics-event-list.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ Visual Studio 2017 and greater contain the **Resource History** window. Selecti
101101

102102
This window allows you to view the history of the selected item in the event list. The dropdown at the top can be used to select other items to view the history of. The top half of the window contains the **Frame Setup Events**. These are the events which fall into the *Create* type category and are calls that typically initialize and create the resource. The bottom half of the window contains the **Frame Events** section. These are the normal read and write events that occur during the usage of the resource.
103103

104-
105104
| Column | Description |
106105
|-----------| - |
107106
| **Type** | Shows the type of the entry, typically *Create*, *Read* and *Write*. |

docs/debugger/graphics/graphics-frame-validation.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Visual Studio 2017 and greater support the **Frame Validation** tool. The Frame
1919

2020
Click the **Run Validation** button at the top left corner to initiate the analysis. It may take several minutes to complete depending on the complexity of the frame. The data which appears here is a combination from two sources: the messages that D3D itself emits when [SDK Layers](/windows/desktop/direct3d11/overviews-direct3d-11-devices-layers) is enabled, and data that is collected from the tool's own internal state tracking. Once complete, you will see several columns of data:
2121

22-
2322
| **Column** | **Description** |
2423
|------------| - |
2524
| Event Id | ID which maps to an entry in the [Event List](graphics-event-list.md) window. |

docs/debugger/graphics/graphics-log-document.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ The Graphics Log document is the record of graphics events that occurred while y
9999
**VSG Log File**
100100
Lists information about the graphics log document.
101101

102-
103102
| Property | Description |
104103
|------------------------| - |
105104
| **Created by** | The name of the app that created the graphics log document. For example, if the capture session was initiated from [!INCLUDE[vsprvs](../../code-quality/includes/vsprvs_md.md)] (manual capture) the value of this property is [!INCLUDE[vsprvs](../../code-quality/includes/vsprvs_md.md)]. |

docs/debugger/how-to-debug-on-a-high-performance-cluster.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ Debugging a multiprocessing program on a high-performance cluster is like debugg
9090

9191
`(MachineName = marvin) & (ThreadName = fourier1)`
9292

93-
9493
## See Also
9594
- [Debug Multithreaded Applications](../debugger/debug-multithreaded-applications-in-visual-studio.md)
9695
- [Remote Debugging](../debugger/remote-debugging.md)

docs/debugger/keyboard-shortcuts-html-and-javascript.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ ms.workload:
2323
Keyboard shortcuts in Visual Studio for debugging UWP apps using HTML and JavaScript.
2424
::: moniker-end
2525

26-
2726
## General shortcuts
2827

2928
These shortcuts work across all tools for UWP apps using HTML and JavaScript.

docs/debugger/specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,6 @@ You can specify the locations the debugger searches for source files, and exclud
254254

255255
1. Select **OK** or **Apply**.
256256

257-
258257
## See also
259258
- [Understand symbol files and Visual Studio symbol settings](https://devblogs.microsoft.com/devops/understanding-symbol-files-and-visual-studios-symbol-settings/)
260259

docs/debugger/start-a-debugging-session-for-a-store-app-in-visual-studio-vb-csharp-cpp-and-xaml.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ In C++ apps, Visual Studio debugs native code by default. You can choose to debu
117117
|**Native with Script**|Debug native C/C++ code and JavaScript code in your app. Managed code is ignored. Available in C++ projects or background tasks only.|
118118
|**GPU only (C++ AMP)**|Debug native C++ code that runs on a graphics processing unit (GPU). Available in C++ projects only.|
119119

120-
121120
### <a name="BKMK__Optional__Disable_network_loopbacks"></a> Disable network loopbacks (optional)
122121

123122
For security, a UWP app that is installed in the standard manner can't make network calls to the device it's installed on. Visual Studio exempts deployed apps from this rule by default, so you can test communication procedures on a single machine. Before you release your app, you should test your app without the exemption.

docs/debugger/unable-to-connect-to-the-microsoft-visual-studio-remote-debugging-monitor.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ Visual Studio could not connect to the remote debugger. This message may occur f
7575

7676
- The remote debugger version does not match Visual Studio. To get the correct version of the remote debugger, see [Remote Debugging](../debugger/remote-debugging.md)
7777

78-
7978
## <a name="valid_name"></a> The requested name was valid, but no data of the requested type was found
8079

8180
The remote computer exists, but Visual Studio could not connect to the remote debugger. This message may occur for several reasons:

docs/debugger/where-can-i-look-up-win32-error-codes-q.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ WINERROR.H in the INCLUDE directory of your default system installation contains
2626

2727
`0x80000004,hr`
2828

29-
3029
## See Also
3130
- [Debugging Native Code FAQs](../debugger/debugging-native-code-faqs.md)
3231
- [Debugging Native Code](../debugger/debugging-native-code.md)

docs/deployment/application-deployment-prerequisites.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ To have your application to install and run successfully, first install all comp
6565

6666
If you change any bootstrapper options, you must change the unsigned bootstrapper and then later sign the bootstrapper file.
6767

68-
6968
| Command-line argument | Description |
7069
| - | - |
7170
| **-?, -h, -help** | Displays a Help dialog box. |

docs/deployment/clickonce-application-manifest.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ A [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] application
2121

2222
[!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] application manifests have the following elements and attributes.
2323

24-
2524
| Element | Description | Attributes |
2625
| - | - | - |
2726
| [\<assembly> Element](../deployment/assembly-element-clickonce-application.md) | Required. Top-level element. | `manifestVersion` |

docs/deployment/clickonce-deployment-manifest.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ A deployment manifest is an XML file that describes a [!INCLUDE[ndptecclick](../
2121

2222
Deployment manifests have the following elements and attributes.
2323

24-
2524
| Element | Description | Attributes |
2625
| - | - | - |
2726
| [\<assembly> Element](../deployment/assembly-element-clickonce-deployment.md) | Required. Top-level element. | `manifestVersion` |

docs/deployment/dependency-element-clickonce-application.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ Identifies a platform or assembly dependency that is required for the applicatio
116116

117117
`dependentAssembly` has the following attributes.
118118

119-
120119
| Attribute | Description |
121120
|-----------------------| - |
122121
| `dependencyType` | Required. Specifies the dependency type. Valid values are `preprequisite` and `install`. An `install` assembly is installed as part of the [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] application. A `prerequisite` assembly must be present in the global assembly cache (GAC) before the [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] application can install. |
@@ -147,15 +146,13 @@ Identifies a platform or assembly dependency that is required for the applicatio
147146
### dsig:Transform
148147
The `dsig:Transform` element is a required child of the `dsig:Transforms` element. The `dsig:Transform` element has the following attributes.
149148

150-
151149
| Attribute | Description |
152150
|-------------| - |
153151
| `Algorithm` | The algorithm used to calculate the digest for this file. Currently the only value used by [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] is `urn:schemas-microsoft-com:HashTransforms.Identity`. |
154152

155153
### dsig:DigestMethod
156154
The `dsig:DigestMethod` element is a required child of the `hash` element. The `dsig:DigestMethod` element has the following attributes.
157155

158-
159156
| Attribute | Description |
160157
|-------------| - |
161158
| `Algorithm` | The algorithm used to calculate the digest for this file. Currently the only value used by [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] is `http://www.w3.org/2000/09/xmldsig#sha1`. |

docs/deployment/dependency-element-clickonce-deployment.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ Identifies the version of the application to install, and the location of the ap
7272
## dependentAssembly
7373
Required. This element contains the `assemblyIdentity` element. The following table shows the attributes the `dependentAssembly` supports.
7474

75-
7675
| Attribute | Description |
7776
|------------------| - |
7877
| `preRequisite` | Optional. Specifies that this assembly should already exist in the GAC. Valid values are `true` and `false`. If `true`, and the specified assembly does not exist in the GAC, the application fails to run. |
@@ -104,15 +103,13 @@ Identifies the version of the application to install, and the location of the ap
104103
## dsig:Transform
105104
The `dsig:Transform` element is a required child of the `dsig:Transforms` element. The following table shows the attributes of the `dsig:Transform` element.
106105

107-
108106
| Attribute | Description |
109107
|-------------| - |
110108
| `Algorithm` | The algorithm used to calculate the digest for this file. Currently the only value used by [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] is `urn:schemas-microsoft-com:HashTransforms.Identity`. |
111109

112110
## dsig:DigestMethod
113111
The `dsig:DigestMethod` element is a required child of the `hash` element. The following table shows the attributes of the `dsig:DigestMethod` element.
114112

115-
116113
| Attribute | Description |
117114
|-------------| - |
118115
| `Algorithm` | The algorithm used to calculate the digest for this file. Currently the only value used by [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] is `http://www.w3.org/2000/09/xmldsig#sha1`. |

docs/deployment/deploying-prerequisites-for-64-bit-applications.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ ClickOnce deployment supports the installation of applications on 64-bit platfor
2727

2828
If you select a prerequisite that does not have 64-bit components, you may see a warning stating that the selected packages are not available for the 64-bit platform.
2929

30-
3130
| Redistributable | x64 support | IA64 support |
3231
| - |-------------|--------------|
3332
| [!INCLUDE[vsto_runtime](../deployment/includes/vsto_runtime_md.md)] | Yes | No |

docs/deployment/deployment-element-clickonce-deployment.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ Identifies the attributes used for the deployment of updates and exposure to the
5454
## Elements and attributes
5555
The `deployment` element is required and is in the `urn:schemas-microsoft-com:asm.v1` namespace. The element has the following attributes.
5656

57-
5857
| Attribute | Description |
5958
|--------------------------| - |
6059
| `install` | Required. Specifies whether this application defines a presence on the Windows **Start** menu and in the Control Panel **Add or Remove Programs** application. Valid values are `true` and `false`. If `false`, [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] will always run the latest version of this application from the network, and will not recognize the `subscription` element. |
@@ -91,7 +90,6 @@ Identifies the attributes used for the deployment of updates and exposure to the
9190

9291
This element is a child of the `deployment` element and has the following attribute.
9392

94-
9593
| Attribute | Description |
9694
|------------| - |
9795
| `codebase` | Required. Identifies the location, as a Uniform Resource Identifier (URI), of the deployment manifest that is used to update the [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] application. This element also allows for forwarding update locations for CD-based installations. Must be a valid URI. |

0 commit comments

Comments
 (0)