You've already forked linux-packaging-mono
Imported Upstream version 6.4.0.186
Former-commit-id: 710edcfe8c8328382163d2ff94143b3f789a6309
This commit is contained in:
parent
d213358eb3
commit
4730215017
@ -41,7 +41,7 @@ static partial class Consts
|
||||
// Use these assembly version constants to make code more maintainable.
|
||||
//
|
||||
|
||||
public const string MonoVersion = "6.4.0.183";
|
||||
public const string MonoVersion = "6.4.0.186";
|
||||
public const string MonoCompany = "Mono development team";
|
||||
public const string MonoProduct = "Mono Common Language Infrastructure";
|
||||
public const string MonoCopyright = "(c) Various Mono authors";
|
||||
|
@ -140,7 +140,7 @@ namespace System.IO.Compression
|
||||
|
||||
internal ValueTask<int> ReadAsyncMemory (Memory<byte> destination, CancellationToken cancellationToken)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
return base.ReadAsync(destination, cancellationToken);
|
||||
}
|
||||
|
||||
internal int ReadCore (Span<byte> destination)
|
||||
@ -180,7 +180,7 @@ namespace System.IO.Compression
|
||||
|
||||
internal ValueTask WriteAsyncMemory (ReadOnlyMemory<byte> source, CancellationToken cancellationToken)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
return base.WriteAsync(source, cancellationToken);
|
||||
}
|
||||
|
||||
internal void WriteCore (ReadOnlySpan<byte> source)
|
||||
|
@ -1,75 +0,0 @@
|
||||
//
|
||||
// System.IO.FileSystemEventArgs.cs
|
||||
//
|
||||
// Author:
|
||||
// Tim Coleman (tim@timcoleman.com)
|
||||
//
|
||||
// Copyright (C) Tim Coleman, 2002
|
||||
//
|
||||
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining
|
||||
// a copy of this software and associated documentation files (the
|
||||
// "Software"), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to
|
||||
// permit persons to whom the Software is furnished to do so, subject to
|
||||
// the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be
|
||||
// included in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
using System;
|
||||
|
||||
namespace System.IO {
|
||||
public class FileSystemEventArgs : EventArgs {
|
||||
|
||||
#region Fields
|
||||
|
||||
WatcherChangeTypes changeType;
|
||||
string directory;
|
||||
string name;
|
||||
|
||||
#endregion // Fields
|
||||
|
||||
#region Constructors
|
||||
|
||||
public FileSystemEventArgs (WatcherChangeTypes changeType, string directory, string name)
|
||||
{
|
||||
this.changeType = changeType;
|
||||
this.directory = directory;
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
internal void SetName (string name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
#endregion // Constructors
|
||||
|
||||
#region Properties
|
||||
|
||||
public WatcherChangeTypes ChangeType {
|
||||
get { return changeType; }
|
||||
}
|
||||
|
||||
public string FullPath {
|
||||
get { return Path.Combine (directory, name); }
|
||||
}
|
||||
|
||||
public string Name {
|
||||
get { return name; }
|
||||
}
|
||||
|
||||
#endregion // Properties
|
||||
}
|
||||
}
|
@ -1,33 +0,0 @@
|
||||
//
|
||||
// System.IO.FileSystemEventHandler.cs
|
||||
//
|
||||
// Author:
|
||||
// Tim Coleman (tim@timcoleman.com)
|
||||
//
|
||||
// Copyright (C) Tim Coleman, 2002
|
||||
// Copyright (C) 2006 Novell, Inc (http://www.novell.com)
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining
|
||||
// a copy of this software and associated documentation files (the
|
||||
// "Software"), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to
|
||||
// permit persons to whom the Software is furnished to do so, subject to
|
||||
// the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be
|
||||
// included in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
namespace System.IO {
|
||||
|
||||
public delegate void FileSystemEventHandler (object sender, FileSystemEventArgs e);
|
||||
}
|
@ -29,8 +29,6 @@ System.IO.Compression/DeflateStream.cs
|
||||
|
||||
System.IO/ErrorEventArgs.cs
|
||||
System.IO/ErrorEventHandler.cs
|
||||
System.IO/FileSystemEventArgs.cs
|
||||
System.IO/FileSystemEventHandler.cs
|
||||
System.IO/InternalBufferOverflowException.cs
|
||||
System.IO/InvalidDataException.cs
|
||||
System.IO/IODescriptionAttribute.cs
|
||||
@ -873,13 +871,15 @@ ReferenceSources/Win32Exception.cs
|
||||
../../../external/corefx/src/System.Private.Uri/src/System/UriBuilder.cs
|
||||
|
||||
../../../external/corefx/src/System.Runtime.Extensions/src/System/CodeDom/Compiler/IndentedTextWriter.cs
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/src/System/IO/FileSystemEventArgs.cs
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/src/System/IO/FileSystemEventHandler.cs
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/src/System/IO/FileSystemWatcher.cs
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/src/System/IO/WaitForChangedResult.cs
|
||||
|
||||
../../../external/corefx/src/System.Runtime.InteropServices/src/System/Security/SecureStringMarshal.cs
|
||||
../../../external/corefx/src/System.Runtime.Extensions/src/System/StringNormalizationExtensions.cs
|
||||
../../../external/corefx/src/System.Diagnostics.StackTrace/src/System/Diagnostics/StackFrameExtensions.cs
|
||||
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/src/System/IO/FileSystemWatcher.cs
|
||||
|
||||
# Everything except compiled
|
||||
../../../external/corefx/src/System.Text.RegularExpressions/src/System/Text/RegularExpressions/Capture.cs
|
||||
|
@ -1 +1 @@
|
||||
84b8b0e1bb44b14cbd30e6ac7b01d378ed4cf0cb
|
||||
2a0838370259ebf96142331b10ac563b1103adc2
|
@ -1 +1 @@
|
||||
af8c7fac9d6aa5eb7b51ce98009453d3ab969d10
|
||||
1f4cc2768f13d9875b13350c001dcbee20740ddc
|
@ -1 +1 @@
|
||||
43d9590e4365814ccc62474eee87bc3c1878bb93
|
||||
9f0fc2a560ae0b2ef6c2614982dde04e85c01a4a
|
@ -1 +1 @@
|
||||
402b55a12e64b2ce4670d243f09114f9c52ef06c
|
||||
587bd1f18657bd271b42e055e7ff0018a45c4274
|
@ -1 +1 @@
|
||||
dc9e0b9629e134ea423a418933f6c18238a213a7
|
||||
d011a963a7c2363851175bdd399a1c1bc970b982
|
@ -1 +1 @@
|
||||
57293eefbd5a400e20b81deae90100ea5244c985
|
||||
d53b8d57ef7eb035aa068ffa64d681042acd284a
|
@ -1 +1 @@
|
||||
385139326ccb9f0dd46448e0d1f3b71c5bdd0e4f
|
||||
63f3ec809c3e4f793839933dbf4615982466e0a4
|
@ -1 +1 @@
|
||||
0746ab14270c79f16e1394e71ab25048001370be
|
||||
efd82eaedda668b7dad0c82fd6097d695a7349bd
|
@ -1 +1 @@
|
||||
84b8b0e1bb44b14cbd30e6ac7b01d378ed4cf0cb
|
||||
2a0838370259ebf96142331b10ac563b1103adc2
|
@ -1 +1 @@
|
||||
af8c7fac9d6aa5eb7b51ce98009453d3ab969d10
|
||||
1f4cc2768f13d9875b13350c001dcbee20740ddc
|
@ -1 +1 @@
|
||||
43d9590e4365814ccc62474eee87bc3c1878bb93
|
||||
9f0fc2a560ae0b2ef6c2614982dde04e85c01a4a
|
@ -1 +1 @@
|
||||
402b55a12e64b2ce4670d243f09114f9c52ef06c
|
||||
587bd1f18657bd271b42e055e7ff0018a45c4274
|
@ -1 +1 @@
|
||||
dc9e0b9629e134ea423a418933f6c18238a213a7
|
||||
d011a963a7c2363851175bdd399a1c1bc970b982
|
@ -1 +1 @@
|
||||
57293eefbd5a400e20b81deae90100ea5244c985
|
||||
d53b8d57ef7eb035aa068ffa64d681042acd284a
|
@ -1 +1 @@
|
||||
385139326ccb9f0dd46448e0d1f3b71c5bdd0e4f
|
||||
63f3ec809c3e4f793839933dbf4615982466e0a4
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user