Skip to content

Commit 0b371e6

Browse files
authored
Merge pull request #4972 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 71b0bb0 + 8ca84d0 commit 0b371e6

File tree

4 files changed

+25
-24
lines changed

4 files changed

+25
-24
lines changed

.markdownlint.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"default": true,
33
"MD001": false,
4-
"MD002": false,
54
"MD004": false,
65
"MD007": false,
76
"MD009": false,
@@ -34,5 +33,6 @@
3433
"MD045": false,
3534
"MD046": {
3635
"style": "fenced"
37-
}
36+
},
37+
"MD047": false
3838
}

docs/debugger/debug-live-azure-applications.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,17 @@ In this tutorial, you will:
5959
::: moniker range=">=vs-2019"
6060
2. Choose **Debug > Attach Snapshot Debugger...**. Select the Azure App Service your project is deployed to and an Azure storage account, and then click **Attach**.
6161

62-
![Launch the snapshot debugger from the Debug menu](../debugger/media/snapshot-debug-menu-attach.png)
62+
![Launch the snapshot debugger from the Debug menu](../debugger/media/snapshot-debug-menu-attach.png)
6363

64-
![Select Azure Resource](../debugger/media/snapshot-select-azure-resource-appservices.png)
64+
![Select Azure Resource](../debugger/media/snapshot-select-azure-resource-appservices.png)
6565

6666
::: moniker-end
6767

68-
> [!IMPORTANT]
69-
> The first time you select **Attach Snapshot Debugger**, you're prompted to install the Snapshot Debugger site extension on your Azure App Service. This installation requires a restart of your Azure App Service.
68+
> [!IMPORTANT]
69+
> The first time you select **Attach Snapshot Debugger**, you're prompted to install the Snapshot Debugger site extension on your Azure App Service. This installation requires a restart of your Azure App Service.
7070
71-
> [!NOTE]
72-
> The Application Insights site extension also supports Snapshot Debugging. If you encounter a "site extension out of date" error message, see [troubleshooting tips and known issues for snapshot debugging](../debugger/debug-live-azure-apps-troubleshooting.md) for upgrading details.
71+
> [!NOTE]
72+
> The Application Insights site extension also supports Snapshot Debugging. If you encounter a "site extension out of date" error message, see [troubleshooting tips and known issues for snapshot debugging](../debugger/debug-live-azure-apps-troubleshooting.md) for upgrading details.
7373
7474
Visual Studio is now in snapshot debugging mode.
7575
![Snapshot debugging mode](../debugger/media/snapshot-message.png)

docs/javascript/configure-packages-with-package-json.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ If you are developing a Node.js app with a lot of npm packages, it's not uncommo
1818

1919
The npm package versioning system has strict rules. The version format follows here:
2020

21-
[major].[minor].[patch]
21+
```
22+
[major].[minor].[patch]
23+
```
2224

2325
Let's say you have a package in your app with a version of 5.2.1. The major version is 5, the minor version is 2, and the patch is 1.
2426

docs/vs-2015/azure/vs-azure-tools-configure-roles-for-cloud-service.md

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -233,21 +233,20 @@ This section illustrates how to programmatically access local storage using C# b
233233

234234
The following code shows an example of how to write a text file to local storage. Replace the <LocalStorageName> placeholder with the appropriate value.
235235

236-
```csharp
237-
// Retrieve an object that points to the local storage resource
238-
LocalResource localResource = RoleEnvironment.GetLocalResource("<LocalStorageName>");
239-
240-
//Define the file name and path
241-
string[] paths = { localResource.RootPath, "MyLocalStorageTest.txt" };
242-
String filePath = Path.Combine(paths);
243-
244-
using (FileStream writeStream = File.Create(filePath))
245-
{
246-
Byte[] textToWrite = new UTF8Encoding(true).GetBytes("Testing Web role storage");
247-
writeStream.Write(textToWrite, 0, textToWrite.Length);
248-
}
249-
250-
```
236+
```csharp
237+
// Retrieve an object that points to the local storage resource
238+
LocalResource localResource = RoleEnvironment.GetLocalResource("<LocalStorageName>");
239+
240+
//Define the file name and path
241+
string[] paths = { localResource.RootPath, "MyLocalStorageTest.txt" };
242+
String filePath = Path.Combine(paths);
243+
244+
using (FileStream writeStream = File.Create(filePath))
245+
{
246+
Byte[] textToWrite = new UTF8Encoding(true).GetBytes("Testing Web role storage");
247+
writeStream.Write(textToWrite, 0, textToWrite.Length);
248+
}
249+
```
251250

252251
### Find a file written to local storage
253252

0 commit comments

Comments
 (0)