Using Makefile instead of Solution/Project files under Visual Studio (2005)

后端 未结 5 1751
长情又很酷
长情又很酷 2021-02-20 04:08

Does anyone have experience using makefiles for Visual Studio C++ builds (under VS 2005) as opposed to using the project/solution setup. For us, the way that the project/soluti

5条回答
  •  忘掉有多难
    2021-02-20 05:03

    You can use nant to build the projects individually thus replacing the solution and have 1 coding solution and no build solutions.

    1 thing to keep in mind, is that the solution and csproj files from vs 2005 and up are msbuild scripts. So if you get acquainted with msbuild you might be able to wield the existing files, to make vs easier, and to make your deployment easier.

提交回复
热议问题