Skip to content

Commit 8d50a1f

Browse files
Acrolinx check
1 parent 827a3e9 commit 8d50a1f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/storage/blobs/storage-quickstart-blobs-dotnet.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Quickstart: Azure Blob Storage library - .NET"
3-
description: In this quickstart, you will learn how to use the Azure Blob Storage client library for .NET to create a container and a blob in Blob (object) storage. Next, you learn how to download the blob to your local computer, and how to list all of the blobs in a container.
3+
description: In this quickstart, you learn how to use the Azure Blob Storage client library for .NET to create a container and a blob in Blob (object) storage. Next, you learn how to download the blob to your local computer, and how to list all of the blobs in a container.
44
author: pauljewellmsft
55
ms.author: pauljewell
66
ms.date: 01/30/2024
@@ -36,7 +36,7 @@ This section walks you through preparing a project to work with the Azure Blob S
3636

3737
### Create the project
3838

39-
For the steps ahead, you'll need to create a .NET console app using either the .NET CLI or Visual Studio 2022.
39+
Create a .NET console app using either the .NET CLI or Visual Studio 2022.
4040

4141
### [Visual Studio 2022](#tab/visual-studio)
4242

@@ -48,7 +48,7 @@ For the steps ahead, you'll need to create a .NET console app using either the .
4848

4949
1. For the **Project Name**, enter *BlobQuickstart*. Leave the default values for the rest of the fields and select **Next**.
5050

51-
1. For the **Framework**, ensure the latest installed version of .NET is selected. Then choose **Create**. The new project will open inside the Visual Studio environment.
51+
1. For the **Framework**, ensure the latest installed version of .NET is selected. Then choose **Create**. The new project opens inside the Visual Studio environment.
5252

5353
### [.NET CLI](#tab/net-cli)
5454

@@ -95,13 +95,13 @@ dotnet add package Azure.Storage.Blobs
9595

9696
If this command to add the package fails, follow these steps:
9797

98-
- Make sure that `nuget.org` is added as a package source. You can list the package sources using the [dotnet nuget list source](/dotnet/core/tools/dotnet-nuget-list-source#examples) command:
98+
- Make sure that `nuget.org` is added as a package source. You can list the package sources using the [`dotnet nuget list source`](/dotnet/core/tools/dotnet-nuget-list-source#examples) command:
9999

100100
```dotnetcli
101101
dotnet nuget list source
102102
```
103103

104-
- If you don't see `nuget.org` in the list, you can add it using the [dotnet nuget add source](/dotnet/core/tools/dotnet-nuget-add-source#examples) command:
104+
- If you don't see `nuget.org` in the list, you can add it using the [`dotnet nuget add source`](/dotnet/core/tools/dotnet-nuget-add-source#examples) command:
105105
106106
```dotnetcli
107107
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
@@ -252,7 +252,7 @@ To learn more about downloading blobs, and to explore more code samples, see [Do
252252
253253
The following code cleans up the resources the app created by deleting the container using [DeleteAsync](/dotnet/api/azure.storage.blobs.blobcontainerclient.deleteasync). The code example also deletes the local files created by the app.
254254
255-
The app pauses for user input by calling `Console.ReadLine` before it deletes the blob, container, and local files. This is a good chance to verify that the resources were actually created correctly, before they are deleted.
255+
The app pauses for user input by calling `Console.ReadLine` before it deletes the blob, container, and local files. This is a good chance to verify that the resources were created correctly, before they're deleted.
256256
257257
Add the following code to the end of the `Program.cs` file:
258258
@@ -275,7 +275,7 @@ To learn more about deleting a container, and to explore more code samples, see
275275
276276
## The completed code
277277
278-
After completing these steps the code in your `Program.cs` file should now resemble the following:
278+
After completing these steps, the code in your `Program.cs` file should now resemble the following:
279279
280280
## [Passwordless (Recommended)](#tab/managed-identity)
281281
@@ -444,9 +444,9 @@ Deleting the local source and downloaded files...
444444
Done
445445
```
446446
447-
Before you begin the clean up process, check your *data* folder for the two files. You can open them and observe that they are identical.
447+
Before you begin the clean-up process, check your *data* folder for the two files. You can open them and observe that they're identical.
448448
449-
After you've verified the files, press the **Enter** key to delete the test files and finish the demo.
449+
After you verify the files, press the **Enter** key to delete the test files and finish the demo.
450450
451451
## Next steps
452452

0 commit comments

Comments
 (0)