1

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

Jakub Konecki
  • 45,581
  • 7
  • 87
  • 126
RooSoft
  • 1,481
  • 2
  • 17
  • 32

2 Answers2

1

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
  • 42,443
  • 8
  • 103
  • 117
0

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.

Mikayla Hutchinson
  • 16,113
  • 2
  • 44
  • 50
  • Thanks for the info... I also have tried to replace the include statement by the whole file with no luck. – RooSoft Sep 30 '10 at 04:02