Borad Akash
Borad Akash

Reputation: 804

Publishing Azure function from VS2017 does not showing files on azure portal?

I have azure function project in VS2017 and when I am publishing that project to portal,I am only getting function.json file on portal, Is there any way to view/edit function.csx file on portal?

Upvotes: 2

Views: 271

Answers (1)

Mikhail Shilkov
Mikhail Shilkov

Reputation: 35134

There is no csx file in precompiled (Visual Studio) project. Instead, a compiled dll is created from your cs and csproj files, and that's what gets deployed. You can't see or edit the code of such project from within the portal.

Upvotes: 1

Related Questions