techno
techno

Reputation: 6500

Azure Web Job Template missing .Net Core Target

In Visual Studio 2019 the Azure Web Job Template does not have any target option for .Net Core. I need to have multiple Web Jobs within a single Web App(which will also do some other tasks) Do i need to start as a .Net core console application?

Upvotes: 1

Views: 831

Answers (1)

Harshitha Veeramalla
Harshitha Veeramalla

Reputation: 1743

Web Job Template option is not available in web projects (.Net Core web app). To enable web jobs you need to create your Web Jobs as a .NET Framework console app (.Net Core Console App).

enter image description here

Check Console App for further information.

Upvotes: 1

Related Questions