constructor-igor / TechSugar

Tech. Sugar seminars
7 stars 6 forks source link

Intro to ASP.NET Core #368

Open constructor-igor opened 6 years ago

constructor-igor commented 6 years ago

https://www.microsoft.com/net/core#windowscmd

constructor-igor commented 6 years ago

image

constructor-igor commented 6 years ago
$ dotnet new console -o hello
$ cd hello
$ dotnet run
Hello World!
constructor-igor commented 6 years ago

image

constructor-igor commented 6 years ago

create ASP.NET Core + Angular applicatiom

dotnet new angular -o <project-name>
cd <project-name>
npm install
dotnet run

image

dotnet run

image

http://localhost:5000/

image

constructor-igor commented 6 years ago

razor

dotnet new razor -o aspnetcoreapp
cd aspnetcoreapp
dotnet run

image

constructor-igor commented 6 years ago

image

constructor-igor commented 6 years ago

dot new options: image