ICU-21740 Output source code line when an error occurs when building with MSVC.

This commit is contained in:
Jeff Genovy 2021-08-30 13:15:08 -07:00
parent b10a467212
commit cb351ee077

View file

@ -56,4 +56,11 @@
<!-- For example: MSBuild complains that the common project creates "icuuc62.dll" rather than "common.dll". However, this is intentional. -->
<MSBuildWarningsAsMessages>MSB8012</MSBuildWarningsAsMessages>
</PropertyGroup>
<!-- This enables outputting the source code line when an error occurs (to make it easier to see what/where the issue is). -->
<ItemDefinitionGroup>
<ClCompile>
<DiagnosticsFormat>Caret</DiagnosticsFormat>
</ClCompile>
</ItemDefinitionGroup>
</Project>