Created
November 27, 2018 02:28
-
-
Save BelRarr/25146613a190b85644959792635cd5d4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/bash | |
# créer l'application asp.net core | |
dotnet new mvc -o core2azure | |
# restaurer les paquets nuget | |
dotnet restore | |
# exécuter l'application en local | |
dotnet run | |
# naviguer à l'URL http://localhost:5000 ou https://localhost:5001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment