Azure WebJobs and Visual Studio 2017

I need to deploy an Azure WebJob and try to follow this article . Is this supposed to work in Visual Studio 2017? I don't have any of the mentioned context menu items (tried two different machines).

+3


source to share


2 answers


I don't have any of the mentioned context menu items (tried two different machines).

What project have you created? So far, we could see the [Publish as Azure WebJob ...] context menu when we create a console application (.NET Framework) in Visual Studio 2017.

enter image description here



You will also need to check if you were checked for the Azure Development option when you installed Visual Studio 2017. If you haven't, you can rerun the Visual Studio 2017 exe file to update Visual Studio 2017.

enter image description here

If your project type is a Console Application (.NET Core), the publish feature is still not available.

+4


source


Not.

WebJobs deployment options are available in Visual Studio 2015 when you install the Azure SDK for .NET.



It is not yet available in VS2017.

EDIT: See the post below.

+3


source







All Articles