Target .NET Standard instead of .NET Core

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 years ago
I noticed that every project in the NopCommerce source solution is .NET Core 2.2.

As you know, .NET Core 3.1 was recently release. In order to move to .NET Core 3.1, all projects now have to update. Preventing just such an issue is one of the reasons .NET Standard was created.

If Nop.Web was split into Nop.Web and Nop.Web.Library, and all code was moved to Nop.Web.Library and it targetted netstandard, and Nop.Web simply became the .NET Core entry point targetting netcore. Then every project in the solution could target netstandard, except Nop.Web, which would be the only project targetting .NET Core. Then moving to .Net Core 3.1 would be as simple as change 1 single project's target.

What do you think?
4 years ago
Thanks. Here is a work item.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.