From the course: Azure Functions for Developers
Unlock the full course today
Join today to access over 25,100 courses taught by industry experts.
Creating the project - Azure Tutorial
From the course: Azure Functions for Developers
Creating the project
- [Instructor] In this video, we're going to create the Website Watcher project that we'll be using throughout the rest of the course. So let's open up Visual Studio and create a new project by using the Azure Functions template that you can find here in the list. Or better yet, instead of scrolling down, you can just type, "function," or "functions," so you can filter out the entire list of templates. So let's select the template and click on Next. Now we need to specify the project name. In this case, I want it to be Website Watcher. You need to specify a location. In this case, I want this course folder in my C drive. And be sure to select play solution and project in the same directory. With this option, the SLN file will be created in the same folder as the CSPROJ file. Okay, so now let's click on Next. Here, in the additional information dialogue, you need to specify the functions worker option. In this course, we're going to use .NET 8 and the isolated option. So this is fine…
Contents
-
-
-
-
-
(Locked)
Creating the project2m 21s
-
(Locked)
Initial implementation of the Register function5m 56s
-
(Locked)
Implementing the SqlOutput trigger in the Register function5m 11s
-
(Locked)
Initial implementation of the Snapshot function5m 6s
-
(Locked)
Extracting the text content with HtmlAgilityPack4m 10s
-
(Locked)
Implementing the SqlOutput binding in the Snapshot function3m 58s
-
(Locked)
Implementing the PdfCreator function4m 27s
-
(Locked)
Implementing the BlobOutput and BlobClient in the PdfCreator function7m 52s
-
(Locked)
Initial implementation of the Watcher function2m 35s
-
(Locked)
Modifying the database tables2m 8s
-
(Locked)
Retrieve the data with SQlInput7m 5s
-
(Locked)
Store the snapshot with SqlOutput1m 56s
-
(Locked)
Query2m 26s
-
(Locked)
-
-
-
-