Reputation: 1
I created an area named Hello
in a solution named XYZ
. I then created a nuget package from this solution and referenced it into my solution named ABC
.
Now I'm facing issue with routing or I even might be missing something.
I would need a solution for .NET Core 2.2.
Upvotes: 0
Views: 176
Reputation: 5719
You need to create "Razor Library" to create reusable UI components same like "Identity" system.
See the MSDN Create reusable UI using the Razor class library project in ASP.NET Core and ASP.NET Core Razor components class libraries.
Upvotes: 1