What is required for doing Unit Tests on a Build Server?

前端 未结 2 548
时光取名叫无心
时光取名叫无心 2021-01-03 01:00

I am doing unit tests (no additional frameworks other then what comes out of the box with VS 2013).

It all works locally. What do I need to do to get it working on t

2条回答
  •  情话喂你
    2021-01-03 01:25

    By not installing Visual Studio on your build server, you are violating the license agreement with Microsoft. Although Microsoft themselves might build without installing Visual Studio on their build servers internally, this scenario is definitely not supported officially.

    Building without installing Visual Studio is asking for undefined behavior and jeopardizing the integrity of your builds. I would suggest to stay clear from these attempts until Microsoft officially supports this scenario.

    Microsoft strongly recommended not to build without installing Visual Studio when we asked as Gold Partner 2 years back as it was not supported in any way officially and there is no license model covering the scenario.

提交回复
热议问题