ASP.NET core em todo Lugar

Post on 10-Jan-2017

101 views 0 download

Transcript of ASP.NET core em todo Lugar

Globalcode – Open4education

ASP.NET CORE em todo lugar

Victor Cavalcantevictor.cavalcante@lambda3.com.br

@vcavalcante

Trilha .NET

Globalcode – Open4education

ASP.NET em todo Lugar

Globalcode – Open4education

ASP.NET em todo Lugar

Globalcode – Open4education

Quais as ferramentas?

Globalcode – Open4education

E principalmente terminal

Globalcode – Open4education

Vamos criar a aplicação

yo aspnet

dotnet restore

dotnet build

dotnet run

Globalcode – Open4education

Vamos usar no VSCode

Instalar a extensão de C#

Adiconar assets to build and debug

Globalcode – Open4education

Vamos rodar no Docker

docker build --tag demo01 .

docker run --rm -ti -p 5000:5000 demo01

Globalcode – Open4education

Vamos rodar no Docker

npm install -g azure-cli

azure account download

azure account import file.publishsettings

azure site create –git

git push azure master

Globalcode – Open4education