Using T4MVC with a script string

Has anyone got T4MVC to run as part of a build script? Preferably NAnt build a script.

I would not have to check the generated files and just create an assembly server as part of the assembly, but T4MVC will only work inside Visual Studio.

I tried:

Has anyone successfully got a solution to work?

+4
source share
1 answer

I don’t think you can do this job. T4MVC relies heavily on the DTE object model and that is simply not available outside of VS.

+5
source

Source: https://habr.com/ru/post/1344512/


All Articles