Is it possible to configure TeamCity to use the MSBuild that ships with Visual Studio 2015?
asp.net-core, teamcity, visual-studio-2015
Solution
Per JetBrains, it is not directly supported, although it should be possible using TeamCity's command line runners.
Problem
I'm attempting to build an ASP.NET vNext project in TeamCity. When it tries to build, I get the following error: `C:\...\MyApp.kproj(7, 3): error MSB4019: The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AspNet\Microsoft.Web.AspNet.Props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.` The file it's looking for is actually located at `C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\AspNet\Microsoft.Web.AspNet.Props` I'm assuming that I need to get TeamCity to use the version of msbuild that ships with Visual Studio 2015. Is this even possible?