user3087739
user3087739

Reputation: 1

How to use Area(in MVC) in different Solutions

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

Answers (1)

LazZiya
LazZiya

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

Related Questions