karan
karan

Reputation: 482

Visual Studio 2017 is stopped when do the restart application of nopcommerce 4.2

When I do the restart application of nopCommerce 4.2 from admin side it always stop visual studio and as well as application.

So, from that plugin install and uninstall features is also not working.

There is any solution for that than let me know.

Thank You

Upvotes: 2

Views: 110

Answers (1)

Alexey A.
Alexey A.

Reputation: 1

Actually install and uninstall features work properly.

Before stopping nopCommerce, the system name of the plugin is written into the plugins.json file.

Next time you start the application, it will get the plugin names from the PluginNamesToInstall section and install them.


plugins.json:

{
  "InstalledPluginNames": [],
  "PluginNamesToUninstall": [],
  "PluginNamesToDelete": [],
  "PluginNamesToInstall": [
         "systemName"
    ]
}

Upvotes: 0

Related Questions