Created
April 22, 2021 12:31
-
-
Save flarocca/09cbf773dfb4422fa8e809e03afdff24 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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