How to spread javascript and cshtml files into separate projects

Viewed 319

Currently I'm working on a big project which tends to have about 10000 javascript and cshtml files.

It's a good idea to have a shell project, and lots of business projects like:

MyCompany.Shell
MyCompany.BusinessDomain1
MyCompany.BusinessDomain2

in this way, MyCompany.Shell is a Web project, and the others are Class Libraries. How can I configure my Solution, TeamProject and MyCompany.Shell to use the JavaScript files which are spread over the Business projects.

FYI, I'm using HotTowel template and Durandal 2.0.1

1 Answers
Related