I want to build a .net 4.5/VS2012 solution in TeamCity. My builds work on the agent that has VS2012 installed, but on the agent that doesn\'t have VS2012, I get warnings lik
I'm running into this problem in my project using Visual Studio 2013 and .NET 4.5. Seems like a problem because I moved the project to another directory.
You can fix this issue by verifying that the HintPath
in the project file is correct or not (.csproj file).
..\..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETCore\v4.5.1\System.Runtime.WindowsRuntime.dll
Since I created a new directory and moved my project into that directory, I found that the relative path to the System.Runtime.WindowsRuntime.dll
in the HintPath
was no longer correct, and thus, could not find the library.
Fixing this path resolved the issue for me.