Imported Upstream version 6.4.0.193
Former-commit-id: 669c464b349fb91fcfd7d83fca295c5ec71fa610
This commit is contained in:
parent
6c18458506
commit
ebea04ba12
@ -1 +1 @@
|
||||
951fcf3f1b6b8b0daea03807e4beada811267307
|
||||
55ac6d9eb003b59dc675dde185889aa5abf29b95
|
@ -1 +1 @@
|
||||
3ae0d0a5ecdd2a64c2f9f658ad59b803e939a576
|
||||
d30c2d8bd4cc5dc03586260fd76a2f670bf62216
|
@ -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.192";
|
||||
public const string MonoVersion = "6.4.0.193";
|
||||
public const string MonoCompany = "Mono development team";
|
||||
public const string MonoProduct = "Mono Common Language Infrastructure";
|
||||
public const string MonoCopyright = "(c) Various Mono authors";
|
||||
|
@ -1,66 +0,0 @@
|
||||
//
|
||||
// System.IO.RenamedEventArgs.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 RenamedEventArgs : FileSystemEventArgs {
|
||||
|
||||
#region Fields
|
||||
|
||||
string oldName;
|
||||
string oldFullPath;
|
||||
|
||||
#endregion // Fields
|
||||
|
||||
#region Constructors
|
||||
|
||||
public RenamedEventArgs (WatcherChangeTypes changeType, string directory, string name, string oldName)
|
||||
: base (changeType, directory, name)
|
||||
{
|
||||
this.oldName = oldName;
|
||||
oldFullPath = Path.Combine (directory, oldName);
|
||||
}
|
||||
|
||||
#endregion // Constructors
|
||||
|
||||
#region Properties
|
||||
|
||||
public string OldFullPath {
|
||||
get { return oldFullPath; }
|
||||
}
|
||||
|
||||
public string OldName {
|
||||
get { return oldName; }
|
||||
}
|
||||
|
||||
#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 RenamedEventHandler (object sender, RenamedEventArgs e);
|
||||
}
|
@ -110,6 +110,9 @@ System/RemoteExecutorTests.cs
|
||||
|
||||
# System.IO.FileSystemWatcher
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/tests/Utility/*.cs
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/tests/Args.ErrorEventArgs.cs
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/tests/Args.FileSystemEventArgs.cs
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/tests/Args.RenamedEventArgs.cs
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/tests/FileSystemWatcher.cs
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/tests/FileSystemWatcher.unit.cs
|
||||
../../../external/corefx/src/Common/tests/System/IO/TempFile.cs
|
||||
|
@ -33,8 +33,6 @@ System.IO/InternalBufferOverflowException.cs
|
||||
System.IO/InvalidDataException.cs
|
||||
System.IO/IODescriptionAttribute.cs
|
||||
System.IO/NotifyFilters.cs
|
||||
System.IO/RenamedEventArgs.cs
|
||||
System.IO/RenamedEventHandler.cs
|
||||
System.IO/WatcherChangeTypes.cs
|
||||
|
||||
System.Net/BasicClient.cs
|
||||
@ -874,6 +872,8 @@ ReferenceSources/Win32Exception.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/RenamedEventArgs.cs
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/src/System/IO/RenamedEventHandler.cs
|
||||
../../../external/corefx/src/System.IO.FileSystem.Watcher/src/System/IO/WaitForChangedResult.cs
|
||||
|
||||
../../../external/corefx/src/System.Runtime.InteropServices/src/System/Security/SecureStringMarshal.cs
|
||||
|
@ -1 +1 @@
|
||||
cf18d4ff94d9f5bf1ddb7c16e12f6b27b8bce84c
|
||||
3d1b895dafac8b924cbe5e123b208624c556f31c
|
@ -1 +1 @@
|
||||
978861b6b3983991e7582669a24ce13b0419d062
|
||||
5b46665f9f5a883f40570f7545f211ffc436158c
|
@ -1 +1 @@
|
||||
6b0671bd10baefd721c8ebcfd5bc184034b3cd02
|
||||
7d135b737c46169f6185b7343f0a513a1abda279
|
@ -1 +1 @@
|
||||
a15667d6edb604f7e003080d613b1bf5cb5410fc
|
||||
7a3b9c036737fd3c8b8c3803dbac156cbac4d0a8
|
@ -1 +1 @@
|
||||
3eb565010a3deb10566c6269b14abed3dcfb6507
|
||||
bd4ae53b76e7eb19861fe972a3be468c355259bd
|
@ -1 +1 @@
|
||||
a9e5715ff05554450e30abe33269ac401de5ea44
|
||||
601854e24895192414207f56537fdc4adf2a332e
|
@ -1 +1 @@
|
||||
63f3ec809c3e4f793839933dbf4615982466e0a4
|
||||
702fb0c5eeb0e803315b26a01963517e500c1604
|
@ -1 +1 @@
|
||||
12bde2b067c681aba32c73fd51f80f0f5d179e7f
|
||||
784ebf05648d22f85dea19b80fff5fa8b2f82825
|
@ -1 +1 @@
|
||||
cf18d4ff94d9f5bf1ddb7c16e12f6b27b8bce84c
|
||||
3d1b895dafac8b924cbe5e123b208624c556f31c
|
@ -1 +1 @@
|
||||
978861b6b3983991e7582669a24ce13b0419d062
|
||||
5b46665f9f5a883f40570f7545f211ffc436158c
|
@ -1 +1 @@
|
||||
6b0671bd10baefd721c8ebcfd5bc184034b3cd02
|
||||
7d135b737c46169f6185b7343f0a513a1abda279
|
@ -1 +1 @@
|
||||
a15667d6edb604f7e003080d613b1bf5cb5410fc
|
||||
7a3b9c036737fd3c8b8c3803dbac156cbac4d0a8
|
@ -1 +1 @@
|
||||
3eb565010a3deb10566c6269b14abed3dcfb6507
|
||||
bd4ae53b76e7eb19861fe972a3be468c355259bd
|
@ -1 +1 @@
|
||||
a9e5715ff05554450e30abe33269ac401de5ea44
|
||||
601854e24895192414207f56537fdc4adf2a332e
|
@ -1 +1 @@
|
||||
63f3ec809c3e4f793839933dbf4615982466e0a4
|
||||
702fb0c5eeb0e803315b26a01963517e500c1604
|
@ -1 +1 @@
|
||||
6820877ed3c6b1ce286cc85df741af78574cefe0
|
||||
5fa149a3835f5f51bd259ceb982a96173d8c7fb2
|
@ -1 +1 @@
|
||||
12bde2b067c681aba32c73fd51f80f0f5d179e7f
|
||||
784ebf05648d22f85dea19b80fff5fa8b2f82825
|
@ -1 +1 @@
|
||||
cf18d4ff94d9f5bf1ddb7c16e12f6b27b8bce84c
|
||||
3d1b895dafac8b924cbe5e123b208624c556f31c
|
@ -1 +1 @@
|
||||
978861b6b3983991e7582669a24ce13b0419d062
|
||||
5b46665f9f5a883f40570f7545f211ffc436158c
|
@ -1 +1 @@
|
||||
6b0671bd10baefd721c8ebcfd5bc184034b3cd02
|
||||
7d135b737c46169f6185b7343f0a513a1abda279
|
@ -1 +1 @@
|
||||
a15667d6edb604f7e003080d613b1bf5cb5410fc
|
||||
7a3b9c036737fd3c8b8c3803dbac156cbac4d0a8
|
@ -1 +1 @@
|
||||
3eb565010a3deb10566c6269b14abed3dcfb6507
|
||||
bd4ae53b76e7eb19861fe972a3be468c355259bd
|
@ -1 +1 @@
|
||||
a9e5715ff05554450e30abe33269ac401de5ea44
|
||||
601854e24895192414207f56537fdc4adf2a332e
|
@ -1 +1 @@
|
||||
63f3ec809c3e4f793839933dbf4615982466e0a4
|
||||
702fb0c5eeb0e803315b26a01963517e500c1604
|
@ -1 +1 @@
|
||||
6820877ed3c6b1ce286cc85df741af78574cefe0
|
||||
5fa149a3835f5f51bd259ceb982a96173d8c7fb2
|
@ -1 +1 @@
|
||||
12bde2b067c681aba32c73fd51f80f0f5d179e7f
|
||||
784ebf05648d22f85dea19b80fff5fa8b2f82825
|
@ -1 +1 @@
|
||||
cf18d4ff94d9f5bf1ddb7c16e12f6b27b8bce84c
|
||||
3d1b895dafac8b924cbe5e123b208624c556f31c
|
@ -1 +1 @@
|
||||
978861b6b3983991e7582669a24ce13b0419d062
|
||||
5b46665f9f5a883f40570f7545f211ffc436158c
|
@ -1 +1 @@
|
||||
b4770f5304a383b73fa8c0a8fe70e7269d085161
|
||||
5bd95bb652444e1c621694ddbb09261e9aa918cd
|
@ -1 +1 @@
|
||||
a15667d6edb604f7e003080d613b1bf5cb5410fc
|
||||
7a3b9c036737fd3c8b8c3803dbac156cbac4d0a8
|
@ -1 +1 @@
|
||||
3eb565010a3deb10566c6269b14abed3dcfb6507
|
||||
bd4ae53b76e7eb19861fe972a3be468c355259bd
|
@ -1 +1 @@
|
||||
a9e5715ff05554450e30abe33269ac401de5ea44
|
||||
601854e24895192414207f56537fdc4adf2a332e
|
@ -1 +1 @@
|
||||
63f3ec809c3e4f793839933dbf4615982466e0a4
|
||||
702fb0c5eeb0e803315b26a01963517e500c1604
|
@ -1 +1 @@
|
||||
6820877ed3c6b1ce286cc85df741af78574cefe0
|
||||
5fa149a3835f5f51bd259ceb982a96173d8c7fb2
|
@ -1 +1 @@
|
||||
153f5f906f962be980914a3d92d62a8018a10d32
|
||||
04a345abfbe8946ba2b35cf0255742ebad43d668
|
@ -1 +1 @@
|
||||
#define FULL_VERSION "explicit/4f5ed50"
|
||||
#define FULL_VERSION "explicit/2b7050b"
|
||||
|
BIN
po/mcs/de.gmo
BIN
po/mcs/de.gmo
Binary file not shown.
@ -1 +1 @@
|
||||
7797e9a6f2c51e6993cf2d619b1ea8dbb93ecd8e
|
||||
467d55b46683cf776b8b3e979fe5f4816989cbd3
|
BIN
po/mcs/es.gmo
BIN
po/mcs/es.gmo
Binary file not shown.
@ -1 +1 @@
|
||||
721004d307546e9e4fb1569c8d29546077714c6b
|
||||
e1b1e061be6505b0f461e53ae0f3b4d4a8a18bbf
|
BIN
po/mcs/ja.gmo
BIN
po/mcs/ja.gmo
Binary file not shown.
@ -1 +1 @@
|
||||
2cbbfbf9b4ba4ed4b647c86a9352e3b2fa864f51
|
||||
8058c2287b33caac380dc9f1f4b95bb8f76ede7f
|
@ -6,9 +6,9 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mono 6.4.0.192\n"
|
||||
"Project-Id-Version: mono 6.4.0.193\n"
|
||||
"Report-Msgid-Bugs-To: http://www.mono-project.com/Bugs\n"
|
||||
"POT-Creation-Date: 2019-09-11 08:09+0000\n"
|
||||
"POT-Creation-Date: 2019-09-12 08:13+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
BIN
po/mcs/pt_BR.gmo
BIN
po/mcs/pt_BR.gmo
Binary file not shown.
@ -1 +1 @@
|
||||
79e97b1dc4fcbbbe518aae69c6cb50ecbf538abf
|
||||
c4f89a5abc6af87a3ef16b58b72e9e5ce59b851c
|
Loading…
x
Reference in New Issue
Block a user