From the course: Azure Serverless Computing

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Visual Studio function project

Visual Studio function project - Azure Tutorial

From the course: Azure Serverless Computing

Start my 1-month free trial

Visual Studio function project

- [Instructor] While we can develop functions in the portal, it's a little bit cumbersome to move around the code windows and to be able to see full real estate and get the full capabilities. That's why the function team created a number of tools to make it easier to do this from whatever kind of a development environment you're used to working with. If you're doing a JavaScript, you can use Visual Studio code or really any node debugger. If you're doing C#, there's some great tools in Visual Studio 2015 and 2017. What it lets you do is create a class library and then use attributes in 2017 to describe out how your functions are going to work. Any give function is going to have a number of files created that make that thing work. It's gonna have the file that has the run entry point that is gonna be where the function is gonna start. You're gonna have a function file, containing all the code. You'll have a project file that contains the assemblies and NuGet packages, and then they'll…

Contents