c# - Can't build in visual studio 2015 because 'Microsoft.Build.Tasks.v14.0.dll' cannot be found -
when attempting build in visual studio 2015, following file missing? project being built in vs2013.
severity code description project file line error task factory "codetaskfactory" not loaded assembly "c:\program files (x86)\msbuild\14.0\bin\microsoft.build.tasks.v14.0.dll". not load file or assembly 'file:///c:\program files (x86)\msbuild\14.0\bin\microsoft.build.tasks.v14.0.dll' or 1 of dependencies. system cannot find file specified.
the assembly has been renamed. change on codetaskfactory msbuild task assemblyfile parameter to...(in error there should targets file name task resides)
assemblyfile="c:\program files (x86)\msbuild\14.0\bin\microsoft.build.tasks.core.dll"
chances tried clever , use msbuild property this..(which doesn't work msbuild 14 12)...
assemblyfile="$(msbuildtoolspath)\microsoft.build.tasks.v$(msbuildtoolsversion).dll"
just fyi...there others such microsoft.build.utilities.v12.0.dll
has been renamed microsoft.build.utilities.core.dll
Comments
Post a Comment