RooSoft
RooSoft

Reputation: 1501

T4MVC in MonoDevelop 2.4

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

Upvotes: 1

Views: 185

Answers (2)

David Ebbo
David Ebbo

Reputation: 43213

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).

Upvotes: 1

Mikayla Hutchinson
Mikayla Hutchinson

Reputation: 16153

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.

Upvotes: 0

Related Questions