Good techniques to use Makefiles in VisualStudio?

后端 未结 11 1014
迷失自我
迷失自我 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:31

    Personally, I use Rake to call msbuild on my solution or project. For regular development I use the IDE and all the benefits that provides.

    Rake is set up so that I can just compile, compile and run tests or compile run tests and create deployable artifacts.

    Once you have a build script it is really easy to start doing things like setting up continuous integration and using it to automate deployment.

    You can also use most build tools from within the IDE if you follow these steps to set it up.

提交回复
热议问题