An Ecommerce Web App Using ASP.NET MVC (dotnet 5.0).
i) Run dotnet run
for a dev server. Navigate to http://localhost:5000/ or https://localhost:5001/.
ii) Run dotnet watch run
for a dev server. Navigate to http://localhost:5000/ or https://localhost:5001/. The app will automatically reload if you change any of the source files. Unfortunately if not happens please reload the browser or shutdown your server and build by command dotnet build
and run the command dotnet watch run
.
Run dotnet build
to build the project. The build files will be stored in the bin/ directory.
To get more help on the Dotnet CLI use dotnet --help
or go check out the .NET CLI README.