Good techniques to use Makefiles in VisualStudio?

后端 未结 11 1037
迷失自我
迷失自我 2021-01-05 23:12

I know the ideal way to build projects is without requiring IDE based project files, since it theoretically causes all sort of trouble with automation and what not. But I\'v

11条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-05 23:36

    Take a look at MSBuild!

    • MSBuild can work with the sln/csproj files from VS, so for simple projects you can just call them directly.
    • if you need more control, wrap the projects in your own build process, add your own tasks etc. - it is very extensible!

    (I wanted to add a sample but this edior totally messed up the XML... sorry)

提交回复
热议问题