I've installed VS 2017 Enterprise on both my Build server and Test server with the Coded UI Testing components installed, but my "Run Functional Tests" TF Build task still fails to resolve the reference to the CodedUITestFramework assembly. All the assemblies are present on both VMs in the "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\PublicAssemblies" folder.
I've tried the following that hasn't worked!
1) Added the PublicAssemblies folder PATH environment variable
2) Added the assemblies to the GAC
Here is the error displayed in the console while running the TF Build/Release process:
MSTestAdapter failed to discover tests in class 'CodedUITestProject1.CodedUITest1' of assembly 'c:\Test\CodedUITestProject1.dll'. Reason Could not load file or assembly 'Microsoft.VisualStudio.QualityTools.CodedUITestFramework, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified..
I'm at loss for how to enable my test DLL to resolve this assembly reference?