Ilya Chernomordik
Ilya Chernomordik

Reputation: 30205

How to publish the Console Application (package from asp.net 5) as an Azure Web Job

I have a new ASP.NET 5 application (beta 8) and I have created a console application (the new Package version). I have followed this guide by Microsoft on publishing it to Azure Web Jobs. The guide is based on 2013 and do not use vNext, but it describes all the files, etc. that are required to publish the webjob. I have followed it and created:

After I do publish my web application, no job appears (so I guess it just does not use the config properly). There is no context menu to Publish As WebJob either on the console application.

Is there any proper way to overcome it or we'll have to wait till full release of ASP.NET 5 to have it fixed and I have to create an ordinary console application meanwhile? I hope there is some workaround to publish it at least manually.

Upvotes: 3

Views: 1033

Answers (1)

David Ebbo
David Ebbo

Reputation: 43193

Currently, there is no support in VS to deploy DNX WebJobs. This will come later, but until then there are still ways to deploy manually.

Related reading:

Upvotes: 3

Related Questions