Skip to content

Commit 1dc7c51

Browse files
labelling code blocks
1 parent 2466b32 commit 1dc7c51

5 files changed

+11
-11
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The top-level element for the application manifest.
2424

2525
## Syntax
2626

27-
```
27+
```xml
2828

2929
<assembly
3030
manifestVersion
@@ -51,7 +51,7 @@ The top-level element for the application manifest.
5151
## Example
5252
The following code example illustrates an `assembly` element in an application manifest for a [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] application. This code example is part of a larger example provided in [ClickOnce application manifest](../deployment/clickonce-application-manifest.md).
5353

54-
```
54+
```xml
5555
<asmv1:assembly
5656
xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd"
5757
manifestVersion="1.0"

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Identifies the application deployed in a [!INCLUDE[ndptecclick](../deployment/in
2424

2525
## Syntax
2626

27-
```
27+
```xml
2828

2929
<assemblyIdentity
3030
name
@@ -53,7 +53,7 @@ Identifies the application deployed in a [!INCLUDE[ndptecclick](../deployment/in
5353

5454
### Code
5555

56-
```
56+
```xml
5757
<asmv1:assemblyIdentity
5858
name="My Application Deployment.exe"
5959
version="1.0.0.0"

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Identifies the primary assembly of the [!INCLUDE[ndptecclick](../deployment/incl
2424

2525
## Syntax
2626

27-
```
27+
```xml
2828

2929
<assemblyIdentity  
3030
name 
@@ -51,7 +51,7 @@ Identifies the primary assembly of the [!INCLUDE[ndptecclick](../deployment/incl
5151
## Example
5252
The following code example illustrates an `assemblyIdentity` element in a [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] deployment manifest. This code example is part of a larger example provided for the [ClickOnce deployment manifest](../deployment/clickonce-deployment-manifest.md) topic.
5353

54-
```
54+
```xml
5555
<!-- Identify the deployment. -->
5656
<assemblyIdentity
5757
name="My Application Deployment.app"

docs/deployment/building-clickonce-applications-from-the-command-line.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ In [!INCLUDE[vs_current_short](../code-quality/includes/vs_current_short_md.md)]
7676

7777
In *CmdLineDemo.vbproj* / *CmdLineDemo.csproj*:
7878

79-
```
79+
```xml
8080
<AssemblyOriginatorKeyFile>WindowsApplication3.snk</AssemblyOriginatorKeyFile>
8181
<GenerateManifests>true</GenerateManifests>
8282
<TargetZone>LocalIntranet</TargetZone>
@@ -98,7 +98,7 @@ In [!INCLUDE[vs_current_short](../code-quality/includes/vs_current_short_md.md)]
9898

9999
You can override any of these properties at the command line without altering the project file itself. For example, the following will build the [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] application deployment without the bootstrapper:
100100

101-
```
101+
```cmd
102102
msbuild /target:publish /property:BootstrapperEnabled=false
103103
```
104104

docs/deployment/choosing-a-clickonce-update-strategy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ms.workload:
4141

4242
This is the same as changing the **Update** element in the deployment manifest as follows:
4343

44-
```
44+
```xml
4545
<!-- When to check for updates -->
4646
<subscription>
4747
<update>
@@ -59,7 +59,7 @@ ms.workload:
5959

6060
This is the same as changing the **Update** element in the deployment manifest as follows:
6161

62-
```
62+
```xml
6363
<!-- When to check for updates -->
6464
<subscription>
6565
<update>
@@ -78,7 +78,7 @@ ms.workload:
7878

7979
This is the same as setting the **minimumRequiredVersion** attribute of the **Deployment** element in the deployment manifest; for example:
8080

81-
```
81+
```xml
8282
<deployment install="true" minimumRequiredVersion="1.0.0.0">
8383
```
8484

0 commit comments

Comments
 (0)