SandeshR
SandeshR

Reputation: 213

How to add application to Azure

We have a console application which get data from a webservice and process it and then updates the items in a sharepoint list. Now we would want to upload this console application to Azure function?

I uploaded the release folder inside the wwwroot in KUDU. But seems like everything time I run the test, it always picks the run method from run.csx file?

Is it possible to incorporate the application into Azure ?

Upvotes: 0

Views: 36

Answers (1)

Ling Toh
Ling Toh

Reputation: 2474

You have 3 options:

  1. Use a batch Function
  2. Use a C# Function but leverage the Process class object.
  3. Use pre-compiled Functions.

Here's a similar GitHub thread with more information: https://github.com/Azure/Azure-Functions/issues/42

Upvotes: 1

Related Questions