You've already forked linux-packaging-mono
Imported Upstream version 5.4.0.167
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
This commit is contained in:
parent
e49d6f06c0
commit
536cd135cc
@@ -138,7 +138,7 @@ namespace System.Text.RegularExpressions {
|
||||
#else
|
||||
// desktop build still uses non-generic collections for AppCompat with .NET Framework 3.5 pre-compiled assemblies
|
||||
protected internal Hashtable caps;
|
||||
protected internal Hashtable capnames;
|
||||
protected internal Hashtable capnames;
|
||||
#endif
|
||||
protected internal String[] capslist; // if captures are sparse or named captures are used, this is the sorted list of names
|
||||
protected internal int capsize; // the size of the capture array
|
||||
@@ -445,7 +445,7 @@ namespace System.Text.RegularExpressions {
|
||||
/// Unescapes any escaped characters in the input string.
|
||||
/// </para>
|
||||
/// </devdoc>
|
||||
[SuppressMessage("Microsoft.Naming","CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId="Unescape", Justification="[....]: already shipped since v1 - can't fix without causing a breaking change")]
|
||||
[SuppressMessage("Microsoft.Naming","CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId="Unescape", Justification="Microsoft: already shipped since v1 - can't fix without causing a breaking change")]
|
||||
public static String Unescape(String str) {
|
||||
if (str==null)
|
||||
throw new ArgumentNullException("str");
|
||||
@@ -1255,7 +1255,7 @@ namespace System.Text.RegularExpressions {
|
||||
#endif
|
||||
[ResourceExposure(ResourceScope.Machine)] // The AssemblyName is interesting.
|
||||
[ResourceConsumption(ResourceScope.Machine)]
|
||||
[SuppressMessage("Microsoft.Naming","CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId="assemblyname", Justification="[....]: already shipped since v1 - can't fix without causing a breaking change")]
|
||||
[SuppressMessage("Microsoft.Naming","CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId="assemblyname", Justification="Microsoft: already shipped since v1 - can't fix without causing a breaking change")]
|
||||
public static void CompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname) {
|
||||
|
||||
CompileToAssemblyInternal(regexinfos, assemblyname, null, null);
|
||||
@@ -1268,7 +1268,7 @@ namespace System.Text.RegularExpressions {
|
||||
#endif
|
||||
[ResourceExposure(ResourceScope.Machine)] // The AssemblyName is interesting.
|
||||
[ResourceConsumption(ResourceScope.Machine)]
|
||||
[SuppressMessage("Microsoft.Naming","CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId="assemblyname", Justification="[....]: already shipped since v1 - can't fix without causing a breaking change")]
|
||||
[SuppressMessage("Microsoft.Naming","CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId="assemblyname", Justification="Microsoft: already shipped since v1 - can't fix without causing a breaking change")]
|
||||
public static void CompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname, CustomAttributeBuilder[] attributes) {
|
||||
CompileToAssemblyInternal(regexinfos, assemblyname, attributes, null);
|
||||
}
|
||||
@@ -1278,7 +1278,7 @@ namespace System.Text.RegularExpressions {
|
||||
#endif
|
||||
[ResourceExposure(ResourceScope.Machine)]
|
||||
[ResourceConsumption(ResourceScope.Machine)]
|
||||
[SuppressMessage("Microsoft.Naming","CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId="assemblyname", Justification="[....]: already shipped since v1 - can't fix without causing a breaking change")]
|
||||
[SuppressMessage("Microsoft.Naming","CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId="assemblyname", Justification="Microsoft: already shipped since v1 - can't fix without causing a breaking change")]
|
||||
public static void CompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname, CustomAttributeBuilder[] attributes, String resourceFile) {
|
||||
CompileToAssemblyInternal(regexinfos, assemblyname, attributes, resourceFile);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user