MSBuild — Use the .csproj file or roll your own?

后端 未结 7 1882
自闭症患者
自闭症患者 2020-12-29 05:23

OK, so I readily concede that I\'m a newbie when it comes to continuous integration.

That being said, I\'m trying to set up a CC.NET environment to educate myself, b

7条回答
  •  孤城傲影
    2020-12-29 06:13

    I personally think it's ok to go with the .csproj file. There's not that much going on in there that you wouldn't have to add yourself if rolling your own MSBuild project.

    However, whatever route you decide to go, I'd still recommend to not add the MbUnit as part of your build step, but add it as a separate step in CC.Net. Running unit tests should be part of the daily CI cycle; however, it should not be part of every build.

提交回复
热议问题