You've already forked linux-packaging-mono
Imported Upstream version 5.10.0.132
Former-commit-id: a9e918d5dd4e43efde300d26074ebd475b9927ef
This commit is contained in:
parent
65dc56118c
commit
4373cb63d5
@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Xml.Linq;
|
||||
|
||||
@ -12,6 +13,12 @@ namespace Xamarin.ApiDiff
|
||||
public bool Breaking;
|
||||
public bool AnyChange;
|
||||
public bool HasIgnoredChanges;
|
||||
public string SourceDescription;
|
||||
|
||||
public ApiChange (string sourceDescription)
|
||||
{
|
||||
SourceDescription = sourceDescription;
|
||||
}
|
||||
|
||||
public ApiChange Append (string text)
|
||||
{
|
||||
@ -69,6 +76,11 @@ namespace Xamarin.ApiDiff
|
||||
return;
|
||||
}
|
||||
|
||||
var changeDescription = $"{State.Namespace}.{State.Type}: {change.Header}: {change.SourceDescription}";
|
||||
State.LogDebugMessage ($"Possible -r value: {changeDescription}");
|
||||
if (State.IgnoreRemoved.Any (re => re.IsMatch (changeDescription)))
|
||||
return;
|
||||
|
||||
List<ApiChange> list;
|
||||
if (!TryGetValue (change.Header, out list)) {
|
||||
list = new List<ApiChange> ();
|
||||
|
Reference in New Issue
Block a user