From the course: AI-Powered Development: GitHub Copilot in Visual Studio Code

Unlock this course with a free trial

Join today to access over 25,300 courses taught by industry experts.

Review updated code and UI

Review updated code and UI

Let's take a quick tour of the code that was generated for this project. Keep in mind that the project was originally created in Visual Studio, but thanks to the flexibility of VS Code, we can easily view and work with the Visual Studio projects here as well. So the code is in this petal folder. The folder structure you see here is fairly typical for a razor pages project. For example, there are some common folders. This one is called the www root folder. This is a public web root folder that holds all the static assets that the browser can request directly. So here you find our CSS, our images, our fonts, our JavaScript, and any libraries that we're using. So like if I look in the live folder, these are some of the standard libraries you'll find in a razor page project. Here's the images that were added by me and CoPilot. Here are some of the CSS that was generated by CoPilot. There's also the Pages folder. We'll come back and talk more about that in a minute. There are also a few…

Contents