Skip to content

Instantly share code, notes, and snippets.

@flarocca
Created April 22, 2021 12:31
Show Gist options
  • Save flarocca/09cbf773dfb4422fa8e809e03afdff24 to your computer and use it in GitHub Desktop.
Save flarocca/09cbf773dfb4422fa8e809e03afdff24 to your computer and use it in GitHub Desktop.
# Crear solución y projecto MVC
dotnet new sln --name AzureAdB2C
dotnet new mvc --name AzureAdB2C.MVC --output AzureAdB2C.MVC
dotnet sln add .\AzureAdB2C.MVC\AzureAdB2C.MVC.csproj
# Instalar las librerías necesarias
dotnet add .\AzureAdB2C.MVC\AzureAdB2C.MVC.csproj package Microsoft.Identity.Web
dotnet add .\AzureAdB2C.MVC\AzureAdB2C.MVC.csproj package Microsoft.Identity.Web.UI
# Restaurar y compilar
dotnet restore
dotnet build
# Ejecutar
dotnet run --project .\AzureAdB2C.MVC\AzureAdB2C.MVC.csproj
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment