- Create a .NET Core console application
- Reference the NuGet package
Microsoft.Extensions.DependencyInjection
- Create a service, a controller, and inject the service into the controller
- Use the DI container
- Create an ASP.NET Core Web application using the empty template
- Add a static HTML file, and try to access this file from the browser
What needs to be done to return static files
- Create custom middleware and add this to the pipeline
Create an ASP.NET Core MVC Web project and experiment with models, views, controllers, and services