Skip to content

Commit 65a05db

Browse files
Review edits
1 parent 7f531e0 commit 65a05db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/storage/files/storage-dotnet-how-to-use-files.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,16 +94,16 @@ If you don't already have a .NET app, create one using Visual Studio or the .NET
9494

9595
If you plan to interact with Azure Files using the `System.IO` namespace, you don't need to install any additional packages. The `System.IO` namespace is included with the .NET SDK. If you plan to use the File Shares client library for .NET or the Azure Storage management library for .NET, install the package using NuGet.
9696
97-
### [Visual Studio](#tab/visual-studio)
97+
### [Visual Studio 2022](#tab/visual-studio)
9898
9999
1. In **Solution Explorer**, right-click your project and choose **Manage NuGet Packages**.
100-
1. In **NuGet Package Manager**, select **Browse**. Then search for and choose the appropriate package and select **Install**. For the File Shares client library, choose **Azure.Storage.Files.Shares**. For the Azure Storage management library, choose **Azure.ResourceManager.Storage**. For the Azure Identity library, which is needed for passwordless choose **Azure.Identity**.
100+
1. In **NuGet Package Manager**, select **Browse**. Then search for and choose the appropriate package and select **Install**. For the File Shares client library, choose **Azure.Storage.Files.Shares**. For the Azure Storage management library, choose **Azure.ResourceManager.Storage**. For the Azure Identity library, which is needed for passwordless connections, choose **Azure.Identity**.
101101
102102
This step installs the package and its dependencies.
103103
104104
### [.NET CLI](#tab/dotnet-cli)
105105
106-
1. In a console window, run the following command to install the `Azure.Storage.Files.Shares` or the `Azure.ResourceManager.Storage` package. You can also install the `Azure.Identity` package to use the `DefaultAzureCredential` class for authentication.
106+
In a console window, run the following command to install the `Azure.Storage.Files.Shares` or the `Azure.ResourceManager.Storage` package. You can also install the `Azure.Identity` package to use the `DefaultAzureCredential` class for authentication.
107107
108108
```dotnetcli
109109
dotnet add package Azure.Storage.Files.Shares

0 commit comments

Comments
 (0)