I am currently developing a multi-project template. I am using the approach documented here: How to: Create Multi-Project Templates. This template will have a main web site template (modeled after the MVC 3 temaplte) and a few additional calls library templates to keep functionality separate.
Example: WebsiteProject1 lives in a folder in the template project and has all of its files and .vstemplate under that folder. ClassLibrary1 lives under another folder in the template project and also has its own .vstemplate file.
My question is, how do I set up references in the WebsiteProject1 for ClassLibrary1 so that when the project is created from the template, the references are present and resolve? Is this even possible?