Is there any MSBuild alternative?

后端 未结 2 830
耶瑟儿~
耶瑟儿~ 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:55

    MSBuild is basically a managed and highly extendable version of NMake and as such is not VS dependent! It IS however .NET dependent.

    So you should be able to use MSBuild to orchestrate everything you need.

    Even the C# compiler is part of the .NET runtime so you should even be able to build C# targets without incurring a VS dependency.

提交回复
热议问题