Reputation: 804
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
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