Is there any MSBuild alternative?

后端 未结 2 831
耶瑟儿~
耶瑟儿~ 2021-01-13 20:22

**I\'m an under training student with so few experience of C#. Our company is developing a solution using T4 templates (C# VS2010). The generated files can\'t be compiled un

2条回答
  •  庸人自扰
    2021-01-13 20:35

    The restriction

    The generated files can't be compiled under MSBuild because it is VS dependent

    seems very odd. Why would you target the .NET environment but want your build environment to be MS independent? Surely you at least need a C# compiler.

    If you really want to use something besides MSBuild, there are a number of alternatives such as Mono's Microsoft.Build or even Make for Windows.

提交回复
热议问题