You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
4
4
author: pauljewellmsft
5
5
ms.author: pauljewell
6
6
ms.date: 01/30/2024
@@ -36,7 +36,7 @@ This section walks you through preparing a project to work with the Azure Blob S
36
36
37
37
### Create the project
38
38
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.
40
40
41
41
### [Visual Studio 2022](#tab/visual-studio)
42
42
@@ -48,7 +48,7 @@ For the steps ahead, you'll need to create a .NET console app using either the .
48
48
49
49
1. For the **Project Name**, enter *BlobQuickstart*. Leave the default values for the rest of the fields and select **Next**.
50
50
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.
If this command to add the package fails, follow these steps:
97
97
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:
99
99
100
100
```dotnetcli
101
101
dotnet nuget list source
102
102
```
103
103
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:
@@ -252,7 +252,7 @@ To learn more about downloading blobs, and to explore more code samples, see [Do
252
252
253
253
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.
254
254
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.
256
256
257
257
Add the following code to the end of the `Program.cs` file:
258
258
@@ -275,7 +275,7 @@ To learn more about deleting a container, and to explore more code samples, see
275
275
276
276
## The completed code
277
277
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:
0 commit comments