views:

34

answers:

2

Hello!

Has anyone tried to make T4MVC work in MonoDevelop?

Out of the box, I get this error: Could not resolve include file 'T4MVC.settings.t4'.

When I include the full path in the include statement, it makes MonoDevelop crash completely.

Thanks for any info!

Marc Lacoursiere

A: 

MD 2.4 didn't resolve included files relative to the files that included them. That might be the problem you're seeing. I've fixed the issue in MD trunk.

mhutch
Thanks for the info... I also have tried to replace the include statement by the whole file with no luck.
RooSoft
A: 

T4MVC relies heavily on the VisualStudio DTE object model, which would not be available in MonoDevelop. So I don't think you could get it working without changing a lot of things to use an equivalent MonoDevelop API (if there is one).

David Ebbo
I guess you're right... I waisted many hours trying to find out what's wrong with it without success.
RooSoft
Of course there is a MD API, and it's much nicer than a COM wrapper :)
mhutch