microsoft / dotnet-framework-docker

The repo for the official docker images for .NET Framework on Windows Server Core.
https://hub.docker.com/_/microsoft-dotnet-framework
MIT License
698 stars 334 forks source link

Install VSTest.Console.exe #314

Closed zhangxin511 closed 5 years ago

zhangxin511 commented 5 years ago

Given the word

It is optimized for performance and is used in place of MSTest.exe in Visual Studio 2012 or later versions

from https://docs.microsoft.com/en-us/previous-versions/jj155800(v=vs.140), could the VSTest.Console.exe included into the images? The image contains MSTest.exe, but this executable won't pickup the MSTestV2 tests: https://github.com/Microsoft/vstest/issues/1213#issuecomment-395303692.

Thanks, Xin

MichaelSimons commented 5 years ago

VSTest.Console.exe is currently included in the SDK images. Run docker run --rm mcr.microsoft.com/dotnet/framework/sdk:4.8 where vstest.console.exe to find where it is installed.

Closing - feel free to continue discussing.

zhangxin511 commented 5 years ago

Thanks @MichaelSimons