Skip to content

Commit 5aaeedd

Browse files
authored
Merge pull request #114437 from mhopkins-msft/queue-how-to
Add .NET v12 support
2 parents b065197 + e22c4b5 commit 5aaeedd

File tree

3 files changed

+200
-82
lines changed

3 files changed

+200
-82
lines changed

articles/storage/blobs/storage-upload-process-images.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ ms.reviewer: dineshm
1515

1616
This tutorial is part one of a series. In this tutorial, you will learn how to deploy a web app that uses the Azure Blob storage client library to upload images to a storage account. When you're finished, you'll have a web app that stores and displays images from Azure storage.
1717

18-
# [\.NET v12 SDK](#tab/dotnet)
18+
# [\.NET v12](#tab/dotnet)
1919
![Image resizer App in .NET](media/storage-upload-process-images/figure2.png)
2020

21-
# [Node.js v10 SDK](#tab/nodejsv10)
21+
# [Node.js v10](#tab/nodejsv10)
2222
![Image resizer app in Node.js V10](media/storage-upload-process-images/upload-app-nodejs-thumb.png)
2323

2424
---
@@ -117,7 +117,7 @@ az webapp create --name $webapp --resource-group myResourceGroup --plan myAppSer
117117

118118
## Deploy the sample app from the GitHub repository
119119

120-
# [\.NET v12 SDK](#tab/dotnet)
120+
# [\.NET v12](#tab/dotnet)
121121

122122
App Service supports several ways to deploy content to a web app. In this tutorial, you deploy the web app from a [public GitHub sample repository](https://github.com/Azure-Samples/storage-blob-upload-from-webapp). Configure GitHub deployment to the web app with the [az webapp deployment source config](/cli/azure/webapp/deployment/source) command.
123123

@@ -129,7 +129,7 @@ az webapp deployment source config --name $webapp --resource-group myResourceGro
129129
--repo-url https://github.com/Azure-Samples/storage-blob-upload-from-webapp
130130
```
131131

132-
# [Node.js v10 SDK](#tab/nodejsv10)
132+
# [Node.js v10](#tab/nodejsv10)
133133
App Service supports several ways to deploy content to a web app. In this tutorial, you deploy the web app from a [public GitHub sample repository](https://github.com/Azure-Samples/storage-blob-upload-from-webapp-node-v10). Configure GitHub deployment to the web app with the [az webapp deployment source config](/cli/azure/webapp/deployment/source) command.
134134

135135
```azurecli-interactive
@@ -142,7 +142,7 @@ az webapp deployment source config --name $webapp --resource-group myResourceGro
142142

143143
## Configure web app settings
144144

145-
# [\.NET v12 SDK](#tab/dotnet)
145+
# [\.NET v12](#tab/dotnet)
146146

147147
The sample web app uses the [Azure Storage APIs for .NET](/dotnet/api/overview/azure/storage) to upload images. Storage account credentials are set in the app settings for the web app. Add app settings to the deployed app with the [az webapp config appsettings set](/cli/azure/webapp/config/appsettings) command.
148148

@@ -154,7 +154,7 @@ az webapp config appsettings set --name $webapp --resource-group myResourceGroup
154154
AzureStorageConfig__AccountKey=$blobStorageAccountKey
155155
```
156156

157-
# [Node.js v10 SDK](#tab/nodejsv10)
157+
# [Node.js v10](#tab/nodejsv10)
158158

159159
The sample web app uses the [Azure Storage Client Library](https://github.com/Azure/azure-storage-js) to request access tokens, which are used to upload images. The storage account credentials used by the Storage SDK are set in the app settings for the web app. Add app settings to the deployed app with the [az webapp config appsettings set](/cli/azure/webapp/config/appsettings) command.
160160

@@ -172,7 +172,7 @@ After you deploy and configure the web app, you can test the image upload functi
172172

173173
To test the web app, browse to the URL of your published app. The default URL of the web app is `https://<web_app>.azurewebsites.net`.
174174

175-
# [\.NET v12 SDK](#tab/dotnet)
175+
# [\.NET v12](#tab/dotnet)
176176

177177
Select the **Upload photos** region to specify and upload a file, or drag a file onto the region. The image disappears if successfully uploaded. The **Generated Thumbnails** section will remain empty until we test it later in this topic.
178178

@@ -214,7 +214,7 @@ The following classes and methods are used in the preceding task:
214214
| [StorageSharedKeyCredential](/dotnet/api/azure.storage.storagesharedkeycredential) | [StorageSharedKeyCredential(String, String) constructor](/dotnet/api/azure.storage.storagesharedkeycredential.-ctor) |
215215
| [BlobClient](/dotnet/api/azure.storage.blobs.blobclient) | [UploadAsync](/dotnet/api/azure.storage.blobs.blobclient.uploadasync) |
216216

217-
# [Node.js v10 SDK](#tab/nodejsv10)
217+
# [Node.js v10](#tab/nodejsv10)
218218

219219
Select **Choose File** to select a file, then click **Upload Image**. The **Generated Thumbnails** section will remain empty until we test it later in this topic.
220220

@@ -300,7 +300,7 @@ Sign in to the [Azure portal](https://portal.azure.com). From the left menu, sel
300300

301301
Verify the image is shown in the container.
302302

303-
![Azure Portal listing of images container](media/storage-upload-process-images/figure13.png)
303+
![Azure portal listing of images container](media/storage-upload-process-images/figure13.png)
304304

305305
## Test thumbnail viewing
306306

@@ -312,10 +312,10 @@ Choose a file with the file picker and select **Upload**.
312312

313313
Navigate back to your app to verify that the image uploaded to the **thumbnails** container is visible.
314314

315-
# [\.NET v12 SDK](#tab/dotnet)
315+
# [\.NET v12](#tab/dotnet)
316316
![.NET image resizer app with new image displayed](media/storage-upload-process-images/figure2.png)
317317

318-
# [Node.js v10 SDK](#tab/nodejsv10)
318+
# [Node.js v10](#tab/nodejsv10)
319319
![Node.js V10 image resizer app with new image displayed](media/storage-upload-process-images/upload-app-nodejs-thumb.png)
320320

321321
---

articles/storage/common/storage-use-azurite.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,9 +457,11 @@ You can use Storage Explorer to view the data stored in Azurite.
457457

458458
In Storage Explorer, connect to Azurite by following these steps:
459459

460-
1. Select **Add an account** icon
460+
1. Select the **Manage Accounts** icon
461+
1. Select **Add an account**
461462
1. Select **Attach to a local emulator**
462463
1. Select **Next**
464+
1. Edit the **Display name** field to a name of your choice
463465
1. Select **Next** again
464466
1. Select **Connect**
465467

0 commit comments

Comments
 (0)