0

Simple question , after build i have the following :

========== Build: 68 succeeded, 5 failed, 1 up-to-date, 0 skipped ==========

Now , i do not have any errors(which means my error list in VS shows 0 errors) , how do i know which projects and why fail to build ?

enter image description here

Chris Tanev
  • 208
  • 3
  • 16

1 Answers1

2

Yeah VS 2015 doesn't show errors at times or show errors that were already fixed.I don't know why. Our solution also had around 70 projects
So What i used to do was to check the Build Log in Output tab. This will have the log of each project including errors if any. Or do MsBuild from Msbuild command prompt of VS 2015. Easy to identify the issue.

Boney
  • 2,072
  • 3
  • 18
  • 23
  • yea i was trying to find something in the output and I looked for `error` and i found 2 error only in Release build : `C:\Program Files (x86)\MSBuild\Microsoft\.NetNative\x64\ilc\IlcInternals.targets(936,5): error : Internal compiler error: MCG0024:UnresolvableTypeReference Unresolvable type reference 'System.Runtime.InteropServices.HandleRef' in 'Assembly(Name=mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=)' found. Please check the references in your build system. A reference is either missing or an assembly is missing an expected type. ` – Chris Tanev Apr 15 '17 at 15:37