We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 285e6c6 commit e2e20f7Copy full SHA for e2e20f7
build-tools/xa-prep-tasks/Xamarin.Android.BuildTools.PrepTasks/GitDiff.cs
@@ -0,0 +1,30 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.Diagnostics;
4
+using System.IO;
5
+using System.Linq;
6
+using System.Text.RegularExpressions;
7
+
8
+using Microsoft.Build.Framework;
9
+using Microsoft.Build.Utilities;
10
11
+using IOFile = System.IO.File;
12
13
+namespace Xamarin.Android.BuildTools.PrepTasks
14
+{
15
+ public sealed class GitDiff : Git
16
+ {
17
+ protected override bool LogTaskMessages {
18
+ get { return false; }
19
+ }
20
21
+ protected override bool PreserveOutput {
22
23
24
25
+ protected override string GenerateCommandLineCommands ()
26
27
+ return "diff " + Arguments;
28
29
30
+}
0 commit comments