Is it worth learning to use MSBuild?

前端 未结 10 2076
清酒与你
清酒与你 2021-02-18 15:20

I simply wondered whether people thought it was worth learning to use the MSBuild syntax in order to customise the build process for a .net project, or whether it is really not

10条回答
  •  攒了一身酷
    2021-02-18 15:57

    @kronoz I would say YES. The neat thing about MSBuild is that if you modify your csproj files to include custom build steps then those steps will happen from within VS or from MSBuild. Also if you ever have a build server you will not need to install full VS, only the SDK to build your projects.

    ==> This is not entirely true. For example, building a setup project on a build server will require Visual studio to be installed!!

提交回复
热议问题