Skip to content

Commit 0907a5e

Browse files
authored
Merge pull request #75742 from damabe/1514063-3
VisualStudio2019Updates: User Story 1514063, Part 3
2 parents cb49f3b + 31f3e3e commit 0907a5e

File tree

37 files changed

+135
-139
lines changed

37 files changed

+135
-139
lines changed

articles/app-service/faq-deployment.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Here are some options for publishing your web app code:
3434

3535
For more information, see [Deploy your app to App Service](deploy-local-git.md).
3636

37-
## I see an error message when I try to deploy from Visual Studio. How do I resolve this?
37+
## I see an error message when I try to deploy from Visual Studio. How do I resolve this error?
3838

39-
If you see the following message, you might be using an older version of the SDK: “Error during deployment for resource 'YourResourceName' in resource group 'YourResourceGroup': MissingRegistrationForLocation: The subscription is not registered for the resource type 'components' in the location 'Central US'. Please re-register for this provider in order to have access to this location.”
39+
If you see the following message, you might be using an older version of the SDK: “Error during deployment for resource 'YourResourceName' in resource group 'YourResourceGroup': MissingRegistrationForLocation: The subscription is not registered for the resource type 'components' in the location 'Central US'. Re-register for this provider in order to have access to this location.”
4040

4141
To resolve this error, upgrade to the [latest SDK](https://azure.microsoft.com/downloads/). If you see this message and you have the latest SDK, submit a support request.
4242

@@ -55,7 +55,7 @@ For information about the file structure of your App Service app, see [File stru
5555

5656
## How do I resolve "FTP Error 550 - There is not enough space on the disk" when I try to FTP my files?
5757

58-
If you see this message, it's likely that you are running into a disk quota in the service plan for your web app. You might need to scale up to a higher service tier based on your disk space needs. For more information about pricing plans and resource limits, see [App Service pricing](https://azure.microsoft.com/pricing/details/app-service/).
58+
If you see this message, it's likely that you're running into a disk quota in the service plan for your web app. You might need to scale up to a higher service tier based on your disk space needs. For more information about pricing plans and resource limits, see [App Service pricing](https://azure.microsoft.com/pricing/details/app-service/).
5959

6060
## How do I set up continuous deployment for my App Service web app?
6161

@@ -65,11 +65,11 @@ You can set up continuous deployment from several resources, including Azure Dev
6565

6666
For help investigating issues with continuous deployment from GitHub or Bitbucket, see [Investigating continuous deployment](https://github.com/projectkudu/kudu/wiki/Investigating-continuous-deployment).
6767

68-
## I can't FTP to my site and publish my code. How do I resolve this?
68+
## I can't FTP to my site and publish my code. How do I resolve this issue?
6969

7070
To resolve FTP issues:
7171

72-
1. Verify that you are entering the correct host name and credentials. For detailed information about different types of credentials and how to use them, see [Deployment credentials](https://github.com/projectkudu/kudu/wiki/Deployment-credentials).
72+
1. Verify that you're entering the correct host name and credentials. For detailed information about different types of credentials and how to use them, see [Deployment credentials](https://github.com/projectkudu/kudu/wiki/Deployment-credentials).
7373
2. Verify that the FTP ports are not blocked by a firewall. The ports should have these settings:
7474
* FTP control connection port: 21
7575
* FTP data connection port: 989, 10001-10300
-2.18 KB
Loading

articles/app-service/webjobs-dotnet-deploy-vs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ You can deploy a project as a WebJob by itself, or link it to a web project so t
8989

9090
If you're using Visual Studio 2015, install the [Azure SDK for .NET (Visual Studio 2015)](https://azure.microsoft.com/downloads/).
9191

92-
If you're using Visual Studio 2017, install the [Azure development workload](https://docs.microsoft.com/visualstudio/install/install-visual-studio#step-4---select-workloads).
92+
If you're using Visual Studio 2019, install the [Azure development workload](https://docs.microsoft.com/visualstudio/install/install-visual-studio#step-4---select-workloads).
9393

9494
### <a id="convert"></a> Enable WebJobs deployment for an existing Console Application project
9595

articles/app-service/webjobs-sdk-get-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@ ms.author: glenga
1919

2020
# Get started with the Azure WebJobs SDK for event-driven background processing
2121

22-
This article shows how to use Visual Studio 2017 to create an Azure WebJobs SDK project, run it locally, and then deploy it to [Azure App Service](overview.md). The project you create is a .NET Core console app, which uses version 3.x of the WebJobs SDK. If you are interested in version 2.x, which uses the .NET Framework, see [Develop and deploy WebJobs using Visual Studio - Azure App Service](webjobs-dotnet-deploy-vs.md).
22+
This article shows how to use Visual Studio 2019 to create an Azure WebJobs SDK project, run it locally, and then deploy it to [Azure App Service](overview.md). The project you create is a .NET Core console app, which uses version 3.x of the WebJobs SDK. If you are interested in version 2.x, which uses the .NET Framework, see [Develop and deploy WebJobs using Visual Studio - Azure App Service](webjobs-dotnet-deploy-vs.md).
2323

2424
To learn more about working with the WebJobs SDK, see [How to use the Azure WebJobs SDK for event-driven background processing](webjobs-sdk-how-to.md).
2525

2626
## Prerequisites
2727

28-
* [Install Visual Studio 2017](/visualstudio/install/) with the **Azure development** workload. If you already have Visual Studio but don't have that workload, add the workload by selecting **Tools > Get Tools and Features**.
28+
* [Install Visual Studio 2019](/visualstudio/install/) with the **Azure development** workload. If you already have Visual Studio but don't have that workload, add the workload by selecting **Tools > Get Tools and Features**.
2929

3030
* You must have [an Azure account](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio) to publish your WebJobs SDK project to Azure.
3131

3232
## Create a project
3333

34-
1. In Visual Studio, select **File > New > Project**.
34+
1. In Visual Studio, select **Create a New Project**.
3535

36-
2. Select **.NET Core > Console App (.NET Core)**.
36+
2. Select **Console App (.NET Core)**.
3737

38-
3. Name the project *WebJobsSDKSample*, and then select **OK**.
38+
3. Name the project *WebJobsSDKSample*, and then select **Create**.
3939

4040
![New Project dialog](./media/webjobs-sdk-get-started/new-project.png)
4141

articles/azure-app-configuration/quickstart-azure-function-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can use any code editor to do the steps in this quickstart. [Visual Studio C
2828

2929
## Prerequisites
3030

31-
To do this quickstart, install [Visual Studio 2017](https://visualstudio.microsoft.com/vs). Make sure that the **Azure development** workload is also installed. Also install the [latest Azure Functions tools](../azure-functions/functions-develop-vs.md#check-your-tools-version).
31+
To do this quickstart, install [Visual Studio 2019](https://visualstudio.microsoft.com/vs). Make sure that the **Azure development** workload is also installed. Also install the [latest Azure Functions tools](../azure-functions/functions-develop-vs.md#check-your-tools-version).
3232

3333
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
3434

articles/azure-app-configuration/quickstart-dotnet-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Azure App Configuration is a managed configuration service in Azure. You can use
2626

2727
## Prerequisites
2828

29-
To do this quickstart, install [Visual Studio 2017](https://visualstudio.microsoft.com/vs) and [.NET Framework 4.7.1](https://dotnet.microsoft.com/download) or later if you haven’t already.
29+
To do this quickstart, install [Visual Studio 2019](https://visualstudio.microsoft.com/vs) and [.NET Framework 4.7.1](https://dotnet.microsoft.com/download) or later if you haven’t already.
3030

3131
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
3232

articles/azure-cache-for-redis/cache-python-get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This quickstart shows how to connect to an Azure Cache for Redis with Python to
4343

4444
[Redis-py](https://github.com/andymccurdy/redis-py) is a Python interface to Azure Cache for Redis. Use the Python packages tool, *pip*, to install the redis-py package.
4545

46-
The following example uses *pip3* for Python3 to install the redis-py package on Windows 10 using a Visual Studio 2017 Developer Command prompt running with elevated Administrator privileges.
46+
The following example uses *pip3* for Python3 to install the redis-py package on Windows 10 using a Visual Studio 2019 Developer Command prompt running with elevated Administrator privileges.
4747

4848
pip3 install redis
4949

articles/azure-cache-for-redis/cache-web-app-cache-aside-leaderboard.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ In this tutorial, you learn how to:
3939
To complete this tutorial, you must have the following prerequisites:
4040

4141
* This tutorial continues where you left off in [ASP.NET quickstart for Azure Cache for Redis](cache-web-app-howto.md). If you haven't already, follow the quickstart first.
42-
* Install [Visual Studio 2017](https://www.visualstudio.com/downloads/) with the following workloads:
42+
* Install [Visual Studio 2019](https://www.visualstudio.com/downloads/) with the following workloads:
4343
* ASP.NET and web development
4444
* Azure Development
4545
* .NET desktop development with SQL Server Express LocalDB or [SQL Server 2017 Express edition](https://www.microsoft.com/sql-server/sql-server-editions-express).
@@ -154,7 +154,7 @@ For more information about this package, see the [EntityFramework](https://www.n
154154
155155
1. Add the following `connectionStrings` section inside the `configuration` section. The name of the connection string must match the name of the Entity Framework database context class, which is `TeamContext`.
156156
157-
This connection string assumes you have met the [Prerequisites](#prerequisites) and installed SQL Server Express LocalDB, which is part of the *.NET desktop development* workload installed with Visual Studio 2017.
157+
This connection string assumes you have met the [Prerequisites](#prerequisites) and installed SQL Server Express LocalDB, which is part of the *.NET desktop development* workload installed with Visual Studio 2019.
158158
159159
```xml
160160
<connectionStrings>

articles/azure-cache-for-redis/cache-web-app-howto.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ ms.custom: mvc
2424

2525
## Introduction
2626

27-
This quickstart shows how to create and deploy an ASP.NET web application to Azure App Service by using Visual Studio 2017. The sample application connects to Azure Cache for Redis to store and retrieve data from the cache. After you finish the quickstart, you'll have a running web app, hosted in Azure, that reads and writes to Azure Cache for Redis.
27+
This quickstart shows how to create and deploy an ASP.NET web application to Azure App Service by using Visual Studio 2019. The sample application connects to Azure Cache for Redis to store and retrieve data from the cache. After you finish the quickstart, you'll have a running web app, hosted in Azure, that reads and writes to Azure Cache for Redis.
2828

2929
![Simple test completed Azure](./media/cache-web-app-howto/cache-simple-test-complete-azure.png)
3030

3131
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
3232

3333
## Prerequisites
3434

35-
To complete the quickstart, you need to install [Visual Studio 2017](https://www.visualstudio.com/downloads/) with the following environments:
35+
To complete the quickstart, you need to install [Visual Studio 2019](https://www.visualstudio.com/downloads/) with the following environments:
3636
* ASP.NET and web development
3737
* Azure development
3838

articles/azure-functions/durable/durable-functions-create-first-csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ ms.author: azfuncdf
1818

1919
*Durable Functions* is an extension of [Azure Functions](../functions-overview.md) that lets you write stateful functions in a serverless environment. The extension manages state, checkpoints, and restarts for you.
2020

21-
In this article, you learn how to use the Visual Studio 2017 tools for Azure Functions to locally create and test a "hello world" durable function. This function orchestrates and chains-together calls to other functions. You then publish the function code to Azure. These tools are available as part of the Azure development workload in Visual Studio 2017.
21+
In this article, you learn how to use the Visual Studio 2019 tools for Azure Functions to locally create and test a "hello world" durable function. This function orchestrates and chains-together calls to other functions. You then publish the function code to Azure. These tools are available as part of the Azure development workload in Visual Studio 2019.
2222

2323
![Running durable function in Azure](./media/durable-functions-create-first-csharp/functions-vs-complete.png)
2424

2525
## Prerequisites
2626

2727
To complete this tutorial:
2828

29-
* Install [Visual Studio 2017](https://azure.microsoft.com/downloads/). Make sure that the **Azure development** workload is also installed.
29+
* Install [Visual Studio 2019](https://azure.microsoft.com/downloads/). Make sure that the **Azure development** workload is also installed.
3030

3131
* Make sure you have the [latest Azure Functions tools](../functions-develop-vs.md#check-your-tools-version).
3232

0 commit comments

Comments
 (0)