On a source-build SDK, the `vstest.console.dll` (which comes as part of the distro SDK) includes these lines when you run `dotnet test`: ``` Microsoft (R) Test Execution Command Line Tool Version 17.8.0 (x64) Copyright (c) Microsoft Corporation. All rights reserved. ``` For MSBuild, we removed the Microsoft trademark/copyright bits in https://github.com/dotnet/msbuild/pull/7672 and changed ``` Microsoft (R) Build Engine version 17.0.0+c9eb9dd64 for .NET Copyright (C) Microsoft Corporation. All rights reserved. ``` into: ``` MSBuild version 17.8.3+195e7f5a3 for .NET ``` Can we make a similar change to the vstest cli? cc @richlander @baronfel @omajid