[xa-prep-tasks] Add <GitDiff/> Task (#4374)

Overlooked in commit 2cfce14b/PR #4362.

Doh!
This commit is contained in:
Jonathan Pryor 2020-03-09 21:30:48 -04:00 коммит произвёл GitHub
Родитель 0b6ec484e1
Коммит ad5af12912
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 30 добавлений и 0 удалений

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

@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using IOFile = System.IO.File;
namespace Xamarin.Android.BuildTools.PrepTasks
{
public sealed class GitDiff : Git
{
protected override bool LogTaskMessages {
get { return false; }
}
protected override bool PreserveOutput {
get { return false; }
}
protected override string GenerateCommandLineCommands ()
{
return "diff " + Arguments;
}
}
}