Skip to content

Commit 83ec1c0

Browse files
committed
Adding Nuget package versions & Updating terminology
1 parent 39fbec8 commit 83ec1c0

File tree

4 files changed

+15
-16
lines changed

4 files changed

+15
-16
lines changed

articles/cosmos-db/create-table-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ You've now updated your app with all the info it needs to communicate with Azure
113113
1. In Visual Studio, right-click on the **TableStorage** project in **Solution Explorer** and then click **Manage NuGet Packages**.
114114
115115
![Manage NuGet Packages](media/create-table-dotnet/azure-cosmosdb-manage-nuget.png)
116-
2. In the NuGet **Browse** box, type *Microsoft.Azure.CosmosDB.Table*. This will find the Cosmos DB Table API client library. Note that this library is currently available for .NET Standard framework only, it's not yet available for .NET Core.
116+
2. In the NuGet **Browse** box, type *Microsoft.Azure.CosmosDB.Table*. This will find the Cosmos DB Table API client library. Note that this library is currently available for .NET Standard only, it's not yet available for .NET Core.
117117

118118
![NuGet Browse tab](media/create-table-dotnet/azure-cosmosdb-nuget-browse.png)
119119

articles/cosmos-db/table-sdk-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ ms.author: rnagpal
5656
## Release and Retirement dates
5757
Microsoft provides notification at least **12 months** in advance of retiring an SDK in order to smooth the transition to a newer/supported version.
5858

59-
The [WindowsAzure.Storage-PremiumTable](https://www.nuget.org/packages/WindowsAzure.Storage-PremiumTable/0.1.0-preview) preview package has been deprecated and replaced by the [Microsoft.Azure.CosmosDB.Table](https://www.nuget.org/packages/Microsoft.Azure.CosmosDB.Table) package. The WindowsAzure.Storage-PremiumTable SDK will be retired on November 15, 2018, at which time requests to the retired SDK will not be permitted. The `Microsoft.Azure.CosmosDB.Table` library is currently available for .NET Standard framework only, it's not yet available for .NET Core.
59+
The [WindowsAzure.Storage-PremiumTable](https://www.nuget.org/packages/WindowsAzure.Storage-PremiumTable/0.1.0-preview) preview package has been deprecated and replaced by the [Microsoft.Azure.CosmosDB.Table](https://www.nuget.org/packages/Microsoft.Azure.CosmosDB.Table) package. The WindowsAzure.Storage-PremiumTable SDK will be retired on November 15, 2018, at which time requests to the retired SDK will not be permitted. The `Microsoft.Azure.CosmosDB.Table` library is currently available for .NET Standard only, it's not yet available for .NET Core.
6060

6161
New features and functionality and optimizations are only added to the current SDK, as such it is recommended that you always upgrade to the latest SDK version as early as possible.
6262

articles/cosmos-db/table-storage-how-to-use-dotnet.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ This sample shows you how to use the [Microsoft Azure CosmosDB Table Library for
3232
You need the following to complete this sample successfully:
3333

3434
* [Microsoft Visual Studio](https://www.visualstudio.com/downloads/)
35-
* [Azure Storage Common Library for .NET (Preview)](https://www.nuget.org/packages/Microsoft.Azure.Storage.Common/). This is a required preview package that is supported in production environments.
36-
* [Microsoft Azure CosmosDB Table Library for .NET](https://www.nuget.org/packages/Microsoft.Azure.CosmosDB.Table) - This library is currently available for .NET Standard framework only, it's not yet available for .NET Core.
35+
* [Azure Storage Common Library for .NET (Preview)](https://www.nuget.org/packages/Microsoft.Azure.Storage.Common/). - A required preview package that is supported in production environments.
36+
* [Microsoft Azure CosmosDB Table Library for .NET](https://www.nuget.org/packages/Microsoft.Azure.CosmosDB.Table) - This library is currently available for .NET Standard only, it's not yet available for .NET Core.
3737
* [Azure Configuration Manager for .NET](https://www.nuget.org/packages/Microsoft.WindowsAzure.ConfigurationManager/)
3838
* [Azure storage account](../storage/common/storage-create-storage-account.md#create-a-storage-account)
3939

@@ -46,18 +46,15 @@ For additional examples using Table storage, see [Getting Started with Azure Tab
4646
[!INCLUDE [cosmos-db-create-azure-service-account](../../includes/cosmos-db-create-azure-service-account.md)]
4747

4848
### Create an Azure storage account
49-
The easiest way to create your first Azure storage account is by using the [Azure portal](https://portal.azure.com). To learn more, see [Create a storage account](../storage/common/storage-quickstart-create-account.md).
49+
* The easiest way to create your first Azure storage account is by using the [Azure portal](https://portal.azure.com). To learn more, see [Create a storage account](../storage/common/storage-quickstart-create-account.md).
5050

51-
You can also create an Azure storage account by using [Azure PowerShell](../storage/common/storage-powershell-guide-full.md), [Azure CLI](../storage/common/storage-azure-cli.md), or the [Storage Resource Provider Client Library for .NET](/dotnet/api/microsoft.azure.management.storage).
51+
* You can also create an Azure storage account by using [Azure PowerShell](../storage/common/storage-powershell-guide-full.md), [Azure CLI](../storage/common/storage-azure-cli.md), or the [Storage Resource Provider Client Library for .NET](/dotnet/api/microsoft.azure.management.storage).
5252

53-
If you prefer not to create a storage account at this time, you can also use the Azure storage emulator to run and test your code in a local environment. For more information, see [Use the Azure Storage Emulator for Development and Testing](../storage/common/storage-use-emulator.md).
53+
* If you prefer not to create a storage account at this time, you can also use the Azure storage emulator to run and test your code in a local environment. For more information, see [Use the Azure Storage Emulator for Development and Testing](../storage/common/storage-use-emulator.md).
5454

5555
### Create an Azure Cosmos DB Table API account
5656
[!INCLUDE [cosmos-db-create-tableapi-account](../../includes/cosmos-db-create-tableapi-account.md)]
5757

58-
## Set up your development environment
59-
Next, set up your development environment in Visual Studio so you're ready to try the code examples in this guide.
60-
6158
### Create a Windows console application project
6259
In Visual Studio, create a new Windows console application. The following steps show you how to create a console application in Visual Studio 2017. The steps are similar in other versions of Visual Studio.
6360

@@ -71,17 +68,19 @@ All code examples in this sample can be added to the `Main()` method of your con
7168

7269
You can use the Azure CosmosDB Table Library in any type of .NET application, including an Azure cloud service or web app, and desktop and mobile applications. In this guide, we use a console application for simplicity.
7370

74-
### Use NuGet to install the required packages
71+
### Install the required NuGet packages
7572
There are three recommended packages you need to reference in your project to complete this sample:
7673

77-
* [Azure Storage Common Library for .NET (preview)](https://www.nuget.org/packages/Microsoft.Azure.Storage.Common).
78-
* [Microsoft Azure Cosmos DB Table Library for .NET](https://www.nuget.org/packages/Microsoft.Azure.CosmosDB.Table). This package provides programmatic access to data resources in your Azure Table storage account or Azure Cosmos DB Table API account.
74+
* [Azure Storage Common Library for .NET (preview)](https://www.nuget.org/packages/Microsoft.Azure.Storage.Common). - Use a version which is less than or equal to 9.0.0.1 (<= 9.0.0.1).
75+
76+
* [Microsoft Azure Cosmos DB Table Library for .NET](https://www.nuget.org/packages/Microsoft.Azure.CosmosDB.Table). This package provides programmatic access to data resources in your Azure Table storage account or Azure Cosmos DB Table API account. This library is currently available for .NET Standard only, it's not yet available for .NET Core.
77+
7978
* [Microsoft Azure Configuration Manager library for .NET](https://www.nuget.org/packages/Microsoft.WindowsAzure.ConfigurationManager/): This package provides a class for parsing a connection string in a configuration file, regardless of where your application is running.
8079

81-
You can use NuGet to obtain both packages. Follow these steps:
80+
To obtain the NuGet packages, follow these steps:
8281

8382
1. Right-click your project in **Solution Explorer**, and choose **Manage NuGet Packages**.
84-
2. Search online for "Microsoft.Azure.Storage.Common", and select **Install** to install the Azure Storage Common Library for .NET (Preview) and its dependencies. Ensure the **Include prerelease** box is checked as this is a preview package.
83+
2. Search online for "Microsoft.Azure.Storage.Common", choose version <= 9.0.0.1 and select **Install** to install the Azure Storage Common Library for .NET (Preview) and its dependencies. Ensure the **Include prerelease** box is checked as this is a preview package.
8584
3. Search online for "Microsoft.Azure.CosmosDB.Table", and select **Install** to install the Microsoft Azure CosmosDB Table Library.
8685
4. Search online for "WindowsAzure.ConfigurationManager", and select **Install** to install the Microsoft Azure Configuration Manager Library.
8786

articles/cosmos-db/table-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Azure Cosmos DB Table API and Azure Table storage share the same table data mode
2323
## Developing with the Azure Cosmos DB Table API
2424

2525
At this time, the [Azure Cosmos DB Table API](table-introduction.md) has four SDKs available for development:
26-
- [Microsoft.Azure.CosmosDB.Table](https://aka.ms/tableapinuget) .NET SDK. This library has the same classes and method signatures as the public [Windows Azure Storage SDK](https://www.nuget.org/packages/WindowsAzure.Storage), but also has the ability to connect to Azure Cosmos DB accounts using the Table API. Note that the `Microsoft.Azure.CosmosDB.Table` library is currently available for .NET Standard framework only, it's not yet available for .NET Core.
26+
- [Microsoft.Azure.CosmosDB.Table](https://aka.ms/tableapinuget) .NET SDK. This library has the same classes and method signatures as the public [Windows Azure Storage SDK](https://www.nuget.org/packages/WindowsAzure.Storage), but also has the ability to connect to Azure Cosmos DB accounts using the Table API. Note that the `Microsoft.Azure.CosmosDB.Table` library is currently available for .NET Standard only, it's not yet available for .NET Core.
2727
- [Python SDK](table-sdk-python.md). The new Azure Cosmos DB Python SDK is the only SDK that supports Azure Table storage in Python. This SDK connects with both Azure Table storage and Azure Cosmos DB Table API.
2828
- [Java SDK](table-sdk-java.md). This Azure Storage SDK has the ability to connect to Azure Cosmos DB accounts using the Table API.
2929
- [Node.js SDK](table-sdk-nodejs.md). This Azure Storage SDK has the ability to connect to Azure Cosmos DB accounts using the Table API.

0 commit comments

Comments
 (0)