Skip to content

Commit 4758c73

Browse files
Merge pull request #214114 from alexwolfmsft/blob-quickstart-remove-version
removed version
2 parents fed6aff + 345b4d9 commit 4758c73

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Quickstart: Azure Blob Storage library v12 - .NET"
3-
description: In this quickstart, you will learn how to use the Azure Blob Storage client library version 12 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.
2+
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.
44
author: pauljewellmsft
55
ms.author: pauljewell
66
ms.date: 10/06/2021
@@ -12,11 +12,11 @@ ms.custom: devx-track-csharp, mode-api
1212
ROBOTS: NOINDEX
1313
---
1414

15-
# Quickstart: Azure Blob Storage client library v12 for .NET
15+
# Quickstart: Azure Blob Storage client library for .NET
1616

17-
Get started with the Azure Blob Storage client library v12 for .NET. Azure Blob Storage is Microsoft's object storage solution for the cloud. Follow steps to install the package and try out example code for basic tasks. Blob storage is optimized for storing massive amounts of unstructured data.
17+
Get started with the Azure Blob Storage client library for .NET. Azure Blob Storage is Microsoft's object storage solution for the cloud. Follow steps to install the package and try out example code for basic tasks. Blob storage is optimized for storing massive amounts of unstructured data.
1818

19-
The examples in this quickstart show you how to use the Azure Blob Storage client library v12 for .NET to:
19+
The examples in this quickstart show you how to use the Azure Blob Storage client library for .NET to:
2020

2121
* [Create the project and configure dependencies](#setting-up)
2222
* [Authenticate to Azure](#authenticate-the-app-to-azure)
@@ -41,7 +41,7 @@ Additional resources:
4141

4242
## Setting up
4343

44-
This section walks you through preparing a project to work with the Azure Blob Storage client library v12 for .NET.
44+
This section walks you through preparing a project to work with the Azure Blob Storage client library for .NET.
4545

4646
### Create the project
4747

@@ -55,26 +55,26 @@ For the steps ahead, you'll need to create a .NET console app using either the .
5555

5656
:::image type="content" source="media/storage-quickstart-blobs-dotnet/visual-studio-new-console-app.png" alt-text="A screenshot showing how to create a new project using Visual Studio.":::
5757

58-
1. For the **Project Name**, enter *BlobQuickstartV12*. Leave the default values for the rest of the fields and select **Next**.
58+
1. For the **Project Name**, enter *BlobQuickstart*. Leave the default values for the rest of the fields and select **Next**.
5959

6060
1. For the **Framework**, ensure .NET 6.0 is selected. Then choose **Create**. The new project will open inside the Visual Studio environment.
6161

6262
### [.NET CLI](#tab/net-cli)
6363

64-
1. In a console window (such as cmd, PowerShell, or Bash), use the `dotnet new` command to create a new console app with the name *BlobQuickstartV12*. This command creates a simple "Hello World" C# project with a single source file: *Program.cs*.
64+
1. In a console window (such as cmd, PowerShell, or Bash), use the `dotnet new` command to create a new console app with the name *BlobQuickstart*. This command creates a simple "Hello World" C# project with a single source file: *Program.cs*.
6565

6666
```dotnetcli
67-
dotnet new console -n BlobQuickstartV12
67+
dotnet new console -n BlobQuickstart
6868
```
6969

70-
1. Switch to the newly created *BlobQuickstartV12* directory.
70+
1. Switch to the newly created *BlobQuickstart* directory.
7171

7272
```console
73-
cd BlobQuickstartV12
73+
cd BlobQuickstart
7474
```
7575

7676
1. Open the project in your desired code editor. To open the project in:
77-
* Visual Studio, locate and double-click the `BlobQuickStartV12.csproj` file.
77+
* Visual Studio, locate and double-click the `BlobQuickStart.csproj` file.
7878
* Visual Studio Code, run the following command:
7979

8080
```bash
@@ -410,7 +410,7 @@ dotnet run
410410
The output of the app is similar to the following example:
411411
412412
```output
413-
Azure Blob Storage v12 - .NET quickstart sample
413+
Azure Blob Storage - .NET quickstart sample
414414
415415
Uploading to Blob storage as blob:
416416
https://mystorageacct.blob.core.windows.net/quickstartblobs60c70d78-8d93-43ae-954d-8322058cfd64/quickstart2fe6c5b4-7918-46cb-96f4-8c4c5cb2fd31.txt
@@ -438,7 +438,7 @@ In this quickstart, you learned how to upload, download, and list blobs using .N
438438
To see Blob storage sample apps, continue to:
439439
440440
> [!div class="nextstepaction"]
441-
> [Azure Blob Storage SDK v12 .NET samples](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples)
441+
> [Azure Blob Storage SDK .NET samples](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples)
442442
443443
- For tutorials, samples, quick starts and other documentation, visit [Azure for .NET and .NET Core developers](/dotnet/azure/).
444444
- To learn more about .NET Core, see [Get started with .NET in 10 minutes](https://dotnet.microsoft.com/learn/dotnet/hello-world-tutorial/intro).

0 commit comments

Comments
 (0)