IrishChieftain
IrishChieftain

Reputation: 15253

Cross-Project Master Page

I asked a "similar" question here:

Visual Studio Multi-Project Solution Options

However, that did not specifically address my problem. In short: what is the best way to share a master page across a multi-project solution? I have a solution with over 20 internal Web app projects and want a common master page for all of these.

UPDATE:

I will need to share other resources also - CSS, images, JS files, etc.

Upvotes: 2

Views: 2532

Answers (1)

Ken Pespisa
Ken Pespisa

Reputation: 22266

Perhaps you could take advantage of NuGet? You could create a custom package, and host it internally. For each project you'll just need to install the package, which would bring in all the CSS, images, JS files, and masterpages.

When you make changes to the nuget package, you could easily "upgrade" the package using the package manager dialog in your project

Upvotes: 1

Related Questions