I just switched to the Visual Studio 2010 Ultimate Release Candidate, from Beta 2, and the T4 generator that I've been using doesn't work anymore. When I run it, I get an error message that says:

"Failed to resolve include text for file:The path '\L2ST4.ttinclude' must be either local to this computer or part of your trusted zone."

I'd had this before, and it disappeared on its own, but now it's back with a vengeance. I've tried removing the generator and adding it again, but the error persists.

The include file is in the same directory as the .tt file that is doing my generation, so I'm not sure why it can't find it. This is the line of code referring to the file it can't find:

<#@ include file="L2ST4.ttinclude"#>

I have a post up at the generator's codeplex site, but I don't think this is an issue specific to this generator, I think it's a T4/Visual Studio thing in general, so I'm hoping someone here can help me out. Plus, the SO community is the one of the fastest ways to get an answer, and this issue is really holding me back.

link|improve this question

At the risk of seeming obvious, is the path '\L2ST4.ttinclude' either local to your computer, or part of your trusted zone? – Robert Harvey Feb 10 '10 at 22:14
It's a file in the same directory as the template, so yeah it's local. – Mike Pateras Feb 11 '10 at 6:32
feedback

1 Answer

up vote 2 down vote accepted

The creator of the generator replied to my post. It's a file protection thing. The work-around was to create new files of the same name and copying in the text from the old files. Since these files were created on my local computer, there was no conflict.

link|improve this answer
+1 Thanks for asking and answering this question. It was helpful to me. – jessegavin Apr 2 '10 at 15:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.