Skip to content

Commit 07792f4

Browse files
Reverting several file changes because there are other VS2017-specific items (such as procedural steps with screenshots) that need to be updated.
1 parent 0e8a230 commit 07792f4

7 files changed

+15
-15
lines changed

articles/cosmos-db/sql-api-dotnet-application-preview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ Before following the instructions in this article, ensure that you have the foll
4848

4949
* [!INCLUDE [cosmos-db-emulator-vs](../../includes/cosmos-db-emulator-vs.md)]
5050

51-
* Microsoft Azure SDK for .NET for Visual Studio 2019, available through the Visual Studio Installer.
51+
* Microsoft Azure SDK for .NET for Visual Studio 2017, available through the Visual Studio Installer.
5252

53-
All the screenshots in this article have been taken using Microsoft Visual Studio Community. If your system is configured with a different version, it is possible that your screens and options may not match entirely, but if you meet the above prerequisites this solution should work.
53+
All the screenshots in this article have been taken using Microsoft Visual Studio Community 2017. If your system is configured with a different version, it is possible that your screens and options may not match entirely, but if you meet the above prerequisites this solution should work.
5454

5555
## <a name="create-an-azure-cosmos-account"></a>Step 1: Create an Azure Cosmos account
5656

articles/cosmos-db/sql-api-dotnet-application.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ Before following the instructions in this article, you should ensure that you ha
3939
[!INCLUDE [cosmos-db-emulator-docdb-api](../../includes/cosmos-db-emulator-docdb-api.md)]
4040

4141
* [!INCLUDE [cosmos-db-emulator-vs](../../includes/cosmos-db-emulator-vs.md)]
42-
* Microsoft Azure SDK for .NET for Visual Studio 2019, available through the Visual Studio Installer.
42+
* Microsoft Azure SDK for .NET for Visual Studio 2017, available through the Visual Studio Installer.
4343

44-
All the screenshots in this article have been taken using Microsoft Visual Studio Community. If your system is configured with a different version it is possible that your screens and options won't match entirely, but if you meet the above prerequisites this solution should work.
44+
All the screenshots in this article have been taken using Microsoft Visual Studio Community 2017. If your system is configured with a different version it is possible that your screens and options won't match entirely, but if you meet the above prerequisites this solution should work.
4545

4646
## <a name="_Toc395637761"></a>Step 1: Create an Azure Cosmos DB database account
4747
Let's start by creating an Azure Cosmos DB account. If you already have a SQL account for Azure Cosmos DB or if you are using the Azure Cosmos DB Emulator for this tutorial, you can skip to [Create a new ASP.NET MVC application](#_Toc395637762).

articles/cosmos-db/sql-api-dotnet-core-get-started-preview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Want to build a Xamarin iOS, Android, or Forms application using the SQL API and
4646

4747
[!INCLUDE [cosmos-db-emulator-docdb-api](../../includes/cosmos-db-emulator-docdb-api.md)]
4848

49-
- If you don’t already have Visual Studio 2019 installed, you can download and use the free [Visual Studio 2019 Community Edition](https://www.visualstudio.com/downloads/). Make sure that you enable the **Azure development** workload during the Visual Studio setup.
49+
- If you don’t already have Visual Studio 2017 installed, you can download and use the free [Visual Studio 2017 Community Edition](https://www.visualstudio.com/downloads/). If you are developing a Universal Windows Platform (UWP) app, you should use **Visual Studio 2017 with version 15.4** or higher. Make sure that you enable the **Azure development** workload during the Visual Studio setup.
5050

5151
- If you're working on MacOS or Linux, you can develop .NET Core apps from the command line by installing the [.NET Core SDK](https://www.microsoft.com/net/core#macos) for the platform of your choice.
5252

articles/cosmos-db/sql-api-dotnet-get-started-preview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Let's create an Azure Cosmos DB account. If you already have an account you want
5353
[!INCLUDE [create-dbaccount-preview](../../includes/cosmos-db-create-dbaccount-preview.md)]
5454

5555
## <a id="SetupVS"></a>Step 2: Setup your Visual Studio project
56-
1. Open **Visual Studio 2019** on your computer.
56+
1. Open **Visual Studio 2017** on your computer.
5757
1. On the **File** menu, select **New**, and then choose **Project**.
5858
1. In the **New Project** dialog, select **Visual C#** / **Console App (.NET Framework)**, name your project, and then click **OK**.
5959
![Screenshot of the New Project window](./media/sql-api-get-started/dotnet-tutorial-visual-studio-new-project.png)
@@ -316,7 +316,7 @@ A container can be created by using either the [**CreateContainerIfNotExistsAsyn
316316
await this.CreateContainer();
317317
}
318318
```
319-
Select **F5** to run your application.
319+
Select **F5** to run your application.
320320

321321
Congratulations! You have successfully created an Azure Cosmos DB container.
322322

@@ -595,7 +595,7 @@ Now, we will update an item in Azure Cosmos DB.
595595
await this.ReplaceFamilyItem();
596596
}
597597
```
598-
Select **F5** to run your application.
598+
Select **F5** to run your application.
599599

600600
Congratulations! You have successfully replaced an Azure Cosmos DB item.
601601

articles/cosmos-db/sql-api-dotnetcore-get-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Don't have time create the application? The complete solution is available on [G
4343

4444
[!INCLUDE [cosmos-db-emulator-docdb-api](../../includes/cosmos-db-emulator-docdb-api.md)]
4545

46-
* Download and use the free [Visual Studio 2019 Community Edition](https://www.visualstudio.com/downloads/). Make sure that you enable **Azure development** during the Visual Studio setup.
46+
* Download and use the free [Visual Studio 2017 Community Edition](https://www.visualstudio.com/downloads/). If you are developing a Universal Windows Platform (UWP) app, you should use **Visual Studio 2017 with version 15.4** or higher. Make sure that you enable **Azure development** during the Visual Studio setup.
4747

4848
* For MacOS or Linux, you can develop .NET Core apps from the command line by installing the [.NET Core SDK](https://www.microsoft.com/net/core#macos) for the platform of your choice.
4949

@@ -57,7 +57,7 @@ Use the following steps to create an Azure Cosmos account:
5757

5858
## <a id="SetupVS"></a>Set up your Visual Studio solution
5959

60-
1. Open **Visual Studio 2019** on your computer.
60+
1. Open **Visual Studio 2017** on your computer.
6161

6262
2. On the **File** menu, select **New**, and then choose **Project**.
6363

articles/cosmos-db/sql-api-get-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ This tutorial shows you how to:
4040
4141
## Prerequisites
4242

43-
Visual Studio 2019 with the Azure development workflow installed:
44-
- You can download and use the **free** [Visual Studio 2019 Community Edition](https://www.visualstudio.com/downloads/). Make sure that you enable **Azure development** during the Visual Studio setup.
43+
Visual Studio 2017 with the Azure development workflow installed:
44+
- You can download and use the **free** [Visual Studio 2017 Community Edition](https://www.visualstudio.com/downloads/). Make sure that you enable **Azure development** during the Visual Studio setup.
4545

4646
An Azure subscription or free Cosmos DB trial account:
4747
- [!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
@@ -71,7 +71,7 @@ Follow these instructions to create an Azure Cosmos DB account in the Azure port
7171

7272
## <a id="SetupVS"></a>Set up the Visual Studio solution
7373

74-
1. In Visual Studio, select **File** > **New** > **Project**.
74+
1. In Visual Studio 2017, select **File** > **New** > **Project**.
7575

7676
1. In the **New Project** dialog, select **Visual C#** > **Console App (.NET Framework)**, name your project *AzureCosmosDBApp*, and then select **OK**.
7777

articles/cosmos-db/sql-api-python-application.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ that you have the following installed:
4343

4444
[!INCLUDE [cosmos-db-emulator-docdb-api](../../includes/cosmos-db-emulator-docdb-api.md)]
4545

46-
* [Visual Studio 2019](https://www.visualstudio.com/downloads/) with **Azure development** and **Python development** enabled. You can check whether these prerequisites are installed, and install them, by opening **Visual Studio Installer** locally.
46+
* [Visual Studio 2017](https://www.visualstudio.com/downloads/) with **Azure development** and **Python development** enabled. You can check whether these prerequisites are installed, and install them, by opening **Visual Studio Installer** locally.
4747
* [Microsoft Azure SDK for Python 2.7](https://azure.microsoft.com/downloads/).
4848
* [Python 2.7](https://www.python.org/downloads/windows/). You can use the 32-bit or 64-bit installation.
4949

@@ -364,7 +364,7 @@ def vote():
364364

365365
## Step 5: Deploy the web application to Azure
366366
Now that you have the complete application working correctly against
367-
Azure Cosmos DB locally, we're going to create a web.config file, update the files on the server to match the local environment, and then view the completed app on Azure. This procedure is specific to Visual Studio 2017 or higher. If you are using a different version of Visual Studio, see [Publishing to Azure App Service](/visualstudio/python/publishing-to-azure).
367+
Azure Cosmos DB locally, we're going to create a web.config file, update the files on the server to match the local environment, and then view the completed app on Azure. This procedure is specific to Visual Studio 2017. If you are using a different version of Visual Studio, see [Publishing to Azure App Service](/visualstudio/python/publishing-to-azure).
368368

369369
1. In Visual Studio **Solution Explorer**, right-click the project and select **Add > New Item...**. In the dialog that appears, selecting the **Azure web.config (Fast CGI)** template and select **OK**. This creates a `web.config` file in your project root.
370370

0 commit comments

Comments
 (0)