[Xamarin.Android.Build.Tasks] Add Debug info for Lint Task (#947)

We need to output the Lint tool Path we use and the Lint Tool
version for diagnostic purposes. So if it does fail we have
the information we need to correct the issue.
This commit is contained in:
Dean Ellis 2017-10-20 16:54:17 +01:00 коммит произвёл Jonathan Pryor
Родитель 572f1fbde3
Коммит 6c4d912550
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -186,6 +186,7 @@ namespace Xamarin.Android.Tasks
}
Version lintToolVersion = GetLintVersion (GenerateFullPathToTool ());
Log.LogDebugMessage (" LintVersion: {0}", lintToolVersion);
foreach (var issue in DisabledIssuesByVersion) {
if (lintToolVersion >= issue.Value) {
if (string.IsNullOrEmpty (DisabledIssues) || !DisabledIssues.Contains (issue.Key))