Setting up nopCommerce 4.00+ For Use With VSCode

To get started with using nopCommerce and VSCode together, you’ll need to have the following:

  1. VSCode installed.
  2. The C# extension installed alongside VSCode.
  3. .NET Core 3.0 SDK
  4. If running nopCommerce 4.00, .NET Framework v4.6.1 Developer Pack

Quick Start

  1. Download the nopCommerce source and copy the contents to a folder on your PC.
  2. Open the folder using VSCode.
  3. If you’re running nopCommerce 4.00, apply the changes from this commit.
  4. Run dotnet restore to get all dependencies required for running locally.
  5. In the directory /Presentation/Nop.Web, run dotnet run.
  6. Access http://localhost:55390 and run the installation process to get a database created.

Reference

https://www.jerriepelser.com/blog/using-vscode-for-csharp-development/

https://www.c-sharpcorner.com/article/getting-started-with-nopcommerce-using-visual-studio-code/