Skip to content

Files

Latest commit

 

History

History

sample-code

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Sample Code for the .NET Containers Beginners Series

This folder contains sample materials for the .NET Containers Beginners Series videos. The container-webapp folder holds a .NET WebAPI application, generated by the following .NET CLI command:

$ dotnet new web -n container-webapp

When watching the videos, you can either use this sample code as provided, or follow along yourself by running the same command in your terminal. If you do, you should see output like this:

# dotnet new web -n container-webapp
The template "ASP.NET Core Empty" was created successfully.

Processing post-creation actions...
Restoring <code root>\container-webapp\container-webapp.csproj:
  Determining projects to restore...
  Restored <code root>\container-webapp\container-webapp.csproj (in 385 ms).
Restore succeeded.

From here you should be good to go to follow along with the videos!