From 8f11a00d09e7010a2b51e09c0d94dafc9de2d47a Mon Sep 17 00:00:00 2001 From: "Xamarin Public Jenkins (auto-signing)" Date: Tue, 28 May 2019 08:47:15 +0000 Subject: [PATCH] Imported Upstream version 6.0.0.265 Former-commit-id: e0ef9e54469db4958572c478db7f39198da10cad --- configure.REMOVED.git-id | 2 +- configure.ac.REMOVED.git-id | 2 +- .../Common/tests/System/IO/PathFeatures.cs | 4 ++++ .../tests/System/Net/Capability.Sockets.cs | 4 ++++ .../tests/PortedCommon/DllImports.cs | 10 ++++++++++ .../PortedCommon/ReparsePointUtilities.cs | 6 ++++++ .../System/Environment.ProcessorCount.cs | 4 ++++ mcs/build/common/Consts.cs | 2 +- ...notouch_runtime_System.dll.exclude.sources | 2 ++ ...ouch_tv_runtime_System.dll.exclude.sources | 2 ++ .../Mono.Security.dll.REMOVED.git-id | 2 +- .../System.Configuration.dll.REMOVED.git-id | 2 +- .../System.Core.dll.REMOVED.git-id | 2 +- .../System.IO.Compression.dll | Bin 99328 -> 99328 bytes .../System.Numerics.dll.REMOVED.git-id | 2 +- .../System.Xml.dll.REMOVED.git-id | 2 +- .../mcs.exe.REMOVED.git-id | 2 +- .../mscorlib.dll.REMOVED.git-id | 2 +- .../Mono.Security.dll.REMOVED.git-id | 2 +- .../System.Configuration.dll.REMOVED.git-id | 2 +- .../System.Core.dll.REMOVED.git-id | 2 +- .../System.IO.Compression.dll | Bin 99328 -> 99328 bytes .../System.Numerics.dll.REMOVED.git-id | 2 +- .../System.Xml.dll.REMOVED.git-id | 2 +- .../mcs.exe.REMOVED.git-id | 2 +- .../mscorlib.dll.REMOVED.git-id | 2 +- .../Mono.Security.dll.REMOVED.git-id | 2 +- .../System.Configuration.dll.REMOVED.git-id | 2 +- .../System.Core.dll.REMOVED.git-id | 2 +- .../System.IO.Compression.dll | Bin 99328 -> 99328 bytes .../System.Numerics.dll.REMOVED.git-id | 2 +- .../System.Xml.dll.REMOVED.git-id | 2 +- .../mcs.exe.REMOVED.git-id | 2 +- .../mscorlib.dll.REMOVED.git-id | 2 +- .../Mono.Security.dll.REMOVED.git-id | 2 +- .../System.Configuration.dll.REMOVED.git-id | 2 +- .../System.Core.dll.REMOVED.git-id | 2 +- .../System.IO.Compression.dll | Bin 99328 -> 99328 bytes .../System.Numerics.dll.REMOVED.git-id | 2 +- .../System.Xml.dll.REMOVED.git-id | 2 +- .../mcs.exe.REMOVED.git-id | 2 +- .../mscorlib.dll.REMOVED.git-id | 2 +- mono/mini/version.h | 2 +- po/mcs/de.gmo | Bin 5406 -> 5406 bytes po/mcs/de.po.REMOVED.git-id | 2 +- po/mcs/es.gmo | Bin 16329 -> 16329 bytes po/mcs/es.po.REMOVED.git-id | 2 +- po/mcs/ja.gmo | Bin 20863 -> 20863 bytes po/mcs/ja.po.REMOVED.git-id | 2 +- po/mcs/mcs.pot | 4 ++-- po/mcs/pt_BR.gmo | Bin 72806 -> 72806 bytes po/mcs/pt_BR.po.REMOVED.git-id | 2 +- 52 files changed, 70 insertions(+), 38 deletions(-) create mode 100644 mcs/class/System/monotouch_runtime_System.dll.exclude.sources create mode 100644 mcs/class/System/monotouch_tv_runtime_System.dll.exclude.sources diff --git a/configure.REMOVED.git-id b/configure.REMOVED.git-id index 7a5920fa10..d7086b461a 100644 --- a/configure.REMOVED.git-id +++ b/configure.REMOVED.git-id @@ -1 +1 @@ -ba1784f90767e3d03c6b54bf98772182d52e800b \ No newline at end of file +e51c0e1f864d708f76cd1c664b2e141b1248df61 \ No newline at end of file diff --git a/configure.ac.REMOVED.git-id b/configure.ac.REMOVED.git-id index b9418c4c1a..fba96b298b 100644 --- a/configure.ac.REMOVED.git-id +++ b/configure.ac.REMOVED.git-id @@ -1 +1 @@ -b47556c41715a88e1a5e14e5b839a3f1394745dd \ No newline at end of file +f4d1ed8dc18898ec8c74a2831a50329d54f05d95 \ No newline at end of file diff --git a/external/corefx/src/Common/tests/System/IO/PathFeatures.cs b/external/corefx/src/Common/tests/System/IO/PathFeatures.cs index 7062d9ee1a..8ff564c0a8 100644 --- a/external/corefx/src/Common/tests/System/IO/PathFeatures.cs +++ b/external/corefx/src/Common/tests/System/IO/PathFeatures.cs @@ -93,7 +93,11 @@ namespace System.IO return s_osEnabled == State.True; } +#if MONO && MOBILE + private static bool RtlAreLongPathsEnabled() => throw new PlatformNotSupportedException(); +#else [DllImport("ntdll", ExactSpelling = true)] private static extern bool RtlAreLongPathsEnabled(); +#endif } } diff --git a/external/corefx/src/Common/tests/System/Net/Capability.Sockets.cs b/external/corefx/src/Common/tests/System/Net/Capability.Sockets.cs index f6a59a9821..753cb1637f 100644 --- a/external/corefx/src/Common/tests/System/Net/Capability.Sockets.cs +++ b/external/corefx/src/Common/tests/System/Net/Capability.Sockets.cs @@ -9,9 +9,13 @@ namespace System.Net.Test.Common { public static partial class Capability { +#if MONO && MOBILE + private static int RtlGetVersion(ref RTL_OSVERSIONINFOW lpVersionInformation) => throw new PlatformNotSupportedException(); +#else // TODO: Using RtlGetVersion is temporary until issue #4741 gets resolved. [DllImport("ntdll", CharSet = CharSet.Unicode)] private static extern int RtlGetVersion(ref RTL_OSVERSIONINFOW lpVersionInformation); +#endif [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] private struct RTL_OSVERSIONINFOW diff --git a/external/corefx/src/System.IO.FileSystem/tests/PortedCommon/DllImports.cs b/external/corefx/src/System.IO.FileSystem/tests/PortedCommon/DllImports.cs index 1130df6d05..4b99ea9241 100644 --- a/external/corefx/src/System.IO.FileSystem/tests/PortedCommon/DllImports.cs +++ b/external/corefx/src/System.IO.FileSystem/tests/PortedCommon/DllImports.cs @@ -8,6 +8,15 @@ using System.Text; internal static class DllImports { +#if MONO && MOBILE + internal static int GetLogicalDrives() => throw new PlatformNotSupportedException(); + + internal static bool GetDiskFreeSpaceEx(String drive, out long freeBytesForUser, out long totalBytes, out long freeBytes) => throw new PlatformNotSupportedException(); + + internal static bool GetVolumeInformation(String drive, [Out]StringBuilder volumeName, int volumeNameBufLen, out int volSerialNumber, out int maxFileNameLen, out int fileSystemFlags, [Out]StringBuilder fileSystemName, int fileSystemNameBufLen) => throw new PlatformNotSupportedException(); + + internal static int GetDriveType(string drive) => throw new PlatformNotSupportedException(); +#else [DllImport("kernel32.dll", SetLastError = true)] internal static extern int GetLogicalDrives(); @@ -19,5 +28,6 @@ internal static class DllImports [DllImport("kernel32.dll", EntryPoint = "GetDriveTypeW", CharSet = CharSet.Unicode, SetLastError = true, BestFitMapping = false)] internal static extern int GetDriveType(string drive); +#endif } diff --git a/external/corefx/src/System.IO.FileSystem/tests/PortedCommon/ReparsePointUtilities.cs b/external/corefx/src/System.IO.FileSystem/tests/PortedCommon/ReparsePointUtilities.cs index 81fa1c19e6..b634bf3c2c 100644 --- a/external/corefx/src/System.IO.FileSystem/tests/PortedCommon/ReparsePointUtilities.cs +++ b/external/corefx/src/System.IO.FileSystem/tests/PortedCommon/ReparsePointUtilities.cs @@ -21,6 +21,11 @@ using System.Threading; using System.Threading.Tasks; public static class MountHelper { +#if MONO && MOBILE + private static bool GetVolumeNameForVolumeMountPoint(String volumeName, StringBuilder uniqueVolumeName, int uniqueNameBufferCapacity) => throw new PlatformNotSupportedException(); + private static bool SetVolumeMountPoint(String mountPoint, String uniqueVolumeName) => throw new PlatformNotSupportedException(); + private static bool DeleteVolumeMountPoint(String mountPoint) => throw new PlatformNotSupportedException(); +#else [DllImport("kernel32.dll", EntryPoint = "GetVolumeNameForVolumeMountPointW", CharSet = CharSet.Unicode, BestFitMapping = false, SetLastError = true)] private static extern bool GetVolumeNameForVolumeMountPoint(String volumeName, StringBuilder uniqueVolumeName, int uniqueNameBufferCapacity); // unique volume name must be "\\?\Volume{GUID}\" @@ -28,6 +33,7 @@ public static class MountHelper private static extern bool SetVolumeMountPoint(String mountPoint, String uniqueVolumeName); [DllImport("kernel32.dll", EntryPoint = "DeleteVolumeMountPointW", CharSet = CharSet.Unicode, BestFitMapping = false, SetLastError = true)] private static extern bool DeleteVolumeMountPoint(String mountPoint); +#endif /// Creates a symbolic link using command line tools /// The existing file diff --git a/external/corefx/src/System.Runtime.Extensions/tests/System/Environment.ProcessorCount.cs b/external/corefx/src/System.Runtime.Extensions/tests/System/Environment.ProcessorCount.cs index 6ebeda11bc..ea02a8d076 100644 --- a/external/corefx/src/System.Runtime.Extensions/tests/System/Environment.ProcessorCount.cs +++ b/external/corefx/src/System.Runtime.Extensions/tests/System/Environment.ProcessorCount.cs @@ -64,8 +64,12 @@ namespace System.Tests private static extern long sysconf(int name); #endif +#if MONO && MOBILE + internal static void GetSystemInfo(ref SYSTEM_INFO lpSystemInfo) => throw new PlatformNotSupportedException(); +#else [DllImport("kernel32.dll", SetLastError = true)] internal static extern void GetSystemInfo(ref SYSTEM_INFO lpSystemInfo); +#endif [StructLayout(LayoutKind.Sequential)] internal struct SYSTEM_INFO diff --git a/mcs/build/common/Consts.cs b/mcs/build/common/Consts.cs index c8713d38fc..9ab4cd2c8f 100644 --- a/mcs/build/common/Consts.cs +++ b/mcs/build/common/Consts.cs @@ -41,7 +41,7 @@ static partial class Consts // Use these assembly version constants to make code more maintainable. // - public const string MonoVersion = "6.0.0.259"; + public const string MonoVersion = "6.0.0.265"; public const string MonoCompany = "Mono development team"; public const string MonoProduct = "Mono Common Language Infrastructure"; public const string MonoCopyright = "(c) Various Mono authors"; diff --git a/mcs/class/System/monotouch_runtime_System.dll.exclude.sources b/mcs/class/System/monotouch_runtime_System.dll.exclude.sources new file mode 100644 index 0000000000..1113be8363 --- /dev/null +++ b/mcs/class/System/monotouch_runtime_System.dll.exclude.sources @@ -0,0 +1,2 @@ +#include monotouch_System.dll.exclude.sources + diff --git a/mcs/class/System/monotouch_tv_runtime_System.dll.exclude.sources b/mcs/class/System/monotouch_tv_runtime_System.dll.exclude.sources new file mode 100644 index 0000000000..1113be8363 --- /dev/null +++ b/mcs/class/System/monotouch_tv_runtime_System.dll.exclude.sources @@ -0,0 +1,2 @@ +#include monotouch_System.dll.exclude.sources + diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id index a209adca21..7eb1a2cf97 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -9dc03b0dca3a091e4ac2ddd5d728e3d26a5d932e \ No newline at end of file +203435678f5d99962a59b166c6f8477089409e69 \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id index 36f8044bd2..22a8ee951e 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -04f97c37b51e418ea1af197553131047499cab62 \ No newline at end of file +75c33dc1e1f39d6be5d4248fd53e053850bf623c \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id index d47e8ba58f..965a61071e 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id @@ -1 +1 @@ -296b6252413645b66b0b30a8113ce75b75c11cd9 \ No newline at end of file +6fd5e0f9295d73cc23d2ea00c89d6afe63e90249 \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll index f4c92a652cc0a01f9990403627b5b6ffe05ba463..d4ef13817eb5f5bb2d16349567072410c96a2e88 100644 GIT binary patch delta 60 zcmV-C0K@-)hz5X&29SsZTr^#rfsD0`0W=H{&A}&$QB>YSmh1u+50}Dwx6lj$uLcD+ S05t$Am!N$CDz~l^0a9?g$`#%K delta 60 zcmV-C0K@-)hz5X&29SsZzyQ>afsD0`0W=H{LDI%ke%-xIiA0v9fR>$Fx6lj$uLcD* S0673Em!N$CDz~l^0a9@M4;P;R diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id index acd1457b74..952065ad26 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -57ded3591080d30e69c5d29606e1f6791f91ce66 \ No newline at end of file +4d8afb8824c1057b2cf667f4ca4a0c15b195c478 \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id index 205e24e7e8..78ea22d4ff 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -3202e79921954dba22d63ecbf2f8fcddcbcb16a2 \ No newline at end of file +b76682372cbd0666707115605695df85d1184dcc \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id index 1a69d356fc..680f366f59 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -aaee731cfa5a449be1adca8388869d1139f5fcc9 \ No newline at end of file +08876e557061e83f44045fddb04a71731a88682e \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id index f9a3204a1b..c8711a9bc8 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -819f1d6e5fa5d08eb07aec3b576abadfd5b04f19 \ No newline at end of file +87311132b75300d9386c73dfd439125bff2d7e00 \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id index a209adca21..7eb1a2cf97 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -9dc03b0dca3a091e4ac2ddd5d728e3d26a5d932e \ No newline at end of file +203435678f5d99962a59b166c6f8477089409e69 \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id index 36f8044bd2..22a8ee951e 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -04f97c37b51e418ea1af197553131047499cab62 \ No newline at end of file +75c33dc1e1f39d6be5d4248fd53e053850bf623c \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id index d47e8ba58f..965a61071e 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id @@ -1 +1 @@ -296b6252413645b66b0b30a8113ce75b75c11cd9 \ No newline at end of file +6fd5e0f9295d73cc23d2ea00c89d6afe63e90249 \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll index f4c92a652cc0a01f9990403627b5b6ffe05ba463..d4ef13817eb5f5bb2d16349567072410c96a2e88 100644 GIT binary patch delta 60 zcmV-C0K@-)hz5X&29SsZTr^#rfsD0`0W=H{&A}&$QB>YSmh1u+50}Dwx6lj$uLcD+ S05t$Am!N$CDz~l^0a9?g$`#%K delta 60 zcmV-C0K@-)hz5X&29SsZzyQ>afsD0`0W=H{LDI%ke%-xIiA0v9fR>$Fx6lj$uLcD* S0673Em!N$CDz~l^0a9@M4;P;R diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id index acd1457b74..952065ad26 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -57ded3591080d30e69c5d29606e1f6791f91ce66 \ No newline at end of file +4d8afb8824c1057b2cf667f4ca4a0c15b195c478 \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id index 205e24e7e8..78ea22d4ff 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -3202e79921954dba22d63ecbf2f8fcddcbcb16a2 \ No newline at end of file +b76682372cbd0666707115605695df85d1184dcc \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id index 1a69d356fc..680f366f59 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -aaee731cfa5a449be1adca8388869d1139f5fcc9 \ No newline at end of file +08876e557061e83f44045fddb04a71731a88682e \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id index f9a3204a1b..c8711a9bc8 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -819f1d6e5fa5d08eb07aec3b576abadfd5b04f19 \ No newline at end of file +87311132b75300d9386c73dfd439125bff2d7e00 \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id index a209adca21..7eb1a2cf97 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -9dc03b0dca3a091e4ac2ddd5d728e3d26a5d932e \ No newline at end of file +203435678f5d99962a59b166c6f8477089409e69 \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id index 36f8044bd2..22a8ee951e 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -04f97c37b51e418ea1af197553131047499cab62 \ No newline at end of file +75c33dc1e1f39d6be5d4248fd53e053850bf623c \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id index d47e8ba58f..965a61071e 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id @@ -1 +1 @@ -296b6252413645b66b0b30a8113ce75b75c11cd9 \ No newline at end of file +6fd5e0f9295d73cc23d2ea00c89d6afe63e90249 \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll index f4c92a652cc0a01f9990403627b5b6ffe05ba463..d4ef13817eb5f5bb2d16349567072410c96a2e88 100644 GIT binary patch delta 60 zcmV-C0K@-)hz5X&29SsZTr^#rfsD0`0W=H{&A}&$QB>YSmh1u+50}Dwx6lj$uLcD+ S05t$Am!N$CDz~l^0a9?g$`#%K delta 60 zcmV-C0K@-)hz5X&29SsZzyQ>afsD0`0W=H{LDI%ke%-xIiA0v9fR>$Fx6lj$uLcD* S0673Em!N$CDz~l^0a9@M4;P;R diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id index acd1457b74..952065ad26 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -57ded3591080d30e69c5d29606e1f6791f91ce66 \ No newline at end of file +4d8afb8824c1057b2cf667f4ca4a0c15b195c478 \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id index 205e24e7e8..78ea22d4ff 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -3202e79921954dba22d63ecbf2f8fcddcbcb16a2 \ No newline at end of file +b76682372cbd0666707115605695df85d1184dcc \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id index 1a69d356fc..680f366f59 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -aaee731cfa5a449be1adca8388869d1139f5fcc9 \ No newline at end of file +08876e557061e83f44045fddb04a71731a88682e \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id index f9a3204a1b..c8711a9bc8 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -819f1d6e5fa5d08eb07aec3b576abadfd5b04f19 \ No newline at end of file +87311132b75300d9386c73dfd439125bff2d7e00 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id index a209adca21..7eb1a2cf97 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -9dc03b0dca3a091e4ac2ddd5d728e3d26a5d932e \ No newline at end of file +203435678f5d99962a59b166c6f8477089409e69 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id index 36f8044bd2..22a8ee951e 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -04f97c37b51e418ea1af197553131047499cab62 \ No newline at end of file +75c33dc1e1f39d6be5d4248fd53e053850bf623c \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id index 2330386b4d..e4a03ef9a4 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id @@ -1 +1 @@ -5227c8dd888613f7417c6cb07fcf63e6eb8ac414 \ No newline at end of file +41b40e229958fb221257259d5603548f2de30e2d \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll index f4c92a652cc0a01f9990403627b5b6ffe05ba463..d4ef13817eb5f5bb2d16349567072410c96a2e88 100644 GIT binary patch delta 60 zcmV-C0K@-)hz5X&29SsZTr^#rfsD0`0W=H{&A}&$QB>YSmh1u+50}Dwx6lj$uLcD+ S05t$Am!N$CDz~l^0a9?g$`#%K delta 60 zcmV-C0K@-)hz5X&29SsZzyQ>afsD0`0W=H{LDI%ke%-xIiA0v9fR>$Fx6lj$uLcD* S0673Em!N$CDz~l^0a9@M4;P;R diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id index acd1457b74..952065ad26 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -57ded3591080d30e69c5d29606e1f6791f91ce66 \ No newline at end of file +4d8afb8824c1057b2cf667f4ca4a0c15b195c478 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id index 205e24e7e8..78ea22d4ff 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -3202e79921954dba22d63ecbf2f8fcddcbcb16a2 \ No newline at end of file +b76682372cbd0666707115605695df85d1184dcc \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id index 1a69d356fc..680f366f59 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -aaee731cfa5a449be1adca8388869d1139f5fcc9 \ No newline at end of file +08876e557061e83f44045fddb04a71731a88682e \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id index ac922cab65..d865f4555b 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -959bead42951eae0826089d7f5f362c24d98b6aa \ No newline at end of file +5b243fb63e09df568d8dfee692ee260f67e5435b \ No newline at end of file diff --git a/mono/mini/version.h b/mono/mini/version.h index e4091b414f..64ae1f8df9 100644 --- a/mono/mini/version.h +++ b/mono/mini/version.h @@ -1 +1 @@ -#define FULL_VERSION "explicit/86f0cac" +#define FULL_VERSION "explicit/6d50c16" diff --git a/po/mcs/de.gmo b/po/mcs/de.gmo index f30019791ac66318792d5a4a400c4fe4b51d3a49..8697f32eb8bbab7fea4c524ca85873986f4aa490 100644 GIT binary patch delta 20 bcmbQIHBW29Q!aK31p^B!Lxat4xQw^}N}L9F delta 20 bcmbQIHBW29Q!aK>1p^B!1Ix{CxQw^}N~Z>V diff --git a/po/mcs/de.po.REMOVED.git-id b/po/mcs/de.po.REMOVED.git-id index c831df4042..803d424700 100644 --- a/po/mcs/de.po.REMOVED.git-id +++ b/po/mcs/de.po.REMOVED.git-id @@ -1 +1 @@ -868e5e4c4e91160844ae8170d6f31d7d856bdc4d \ No newline at end of file +748226ad2dd28e10586eba9ed5b2b88e67929e2b \ No newline at end of file diff --git a/po/mcs/es.gmo b/po/mcs/es.gmo index dc72156eb70af771230fe562a977d97a12fbe123..b639bfefb78d057514c277d92fb9a1a1f7838230 100644 GIT binary patch delta 20 bcmX?Ef3kjqo+7)2f`NsVp}}TT#VK+CQM?AN delta 20 bcmX?Ef3kjqo+7)cf`NsVf#qgX#VK+CQO5?d diff --git a/po/mcs/es.po.REMOVED.git-id b/po/mcs/es.po.REMOVED.git-id index 1d8096385e..6091f1aa78 100644 --- a/po/mcs/es.po.REMOVED.git-id +++ b/po/mcs/es.po.REMOVED.git-id @@ -1 +1 @@ -0c437bf63438c0de2fef22bea72de07f05866810 \ No newline at end of file +1e6e5daabeb3287ed4817f29d4b19868dc101b76 \ No newline at end of file diff --git a/po/mcs/ja.gmo b/po/mcs/ja.gmo index 24cd21de009e3e892b74f3297ce0f1d23923a287..4cfe6aa07f85e8875c1666ea0839e1945ac3d3a0 100644 GIT binary patch delta 22 dcmeyri1Gg-#tj_m>=p_J7FLD^oB7oXv;bia2MGWG delta 22 dcmeyri1Gg-#tj_m?4}9^7FGt9oB7oXv;bil2Mz!L diff --git a/po/mcs/ja.po.REMOVED.git-id b/po/mcs/ja.po.REMOVED.git-id index e0d82f71ad..82cb49ea71 100644 --- a/po/mcs/ja.po.REMOVED.git-id +++ b/po/mcs/ja.po.REMOVED.git-id @@ -1 +1 @@ -171550bdaf3f08ff32d2762958ea423a7a4e3c53 \ No newline at end of file +2cb750b9a0330f71d3ed3597800515b5cd12b582 \ No newline at end of file diff --git a/po/mcs/mcs.pot b/po/mcs/mcs.pot index ab733c53c0..c3844451e1 100644 --- a/po/mcs/mcs.pot +++ b/po/mcs/mcs.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mono 6.0.0.259\n" +"Project-Id-Version: mono 6.0.0.265\n" "Report-Msgid-Bugs-To: http://www.mono-project.com/Bugs\n" -"POT-Creation-Date: 2019-05-25 08:09+0000\n" +"POT-Creation-Date: 2019-05-28 08:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/mcs/pt_BR.gmo b/po/mcs/pt_BR.gmo index 6ca02bcfae485b04b5828d80ecaee569f884234c..b94bf47b8229b111abdd762cd2c696574536d73b 100644 GIT binary patch delta 22 ecmaF1gXP%{mJM-J*)0?dEUXL-Hm6QyYzF{t1qgot delta 22 ecmaF1gXP%{mJM-J*-aG;EUXMHH>XZzYzF{t5D0_- diff --git a/po/mcs/pt_BR.po.REMOVED.git-id b/po/mcs/pt_BR.po.REMOVED.git-id index 4816d4476a..30a162af36 100644 --- a/po/mcs/pt_BR.po.REMOVED.git-id +++ b/po/mcs/pt_BR.po.REMOVED.git-id @@ -1 +1 @@ -3b0c031d6d068f82b69a288a27e8c284de07f4f2 \ No newline at end of file +050d090f0f29c06c1319918675218ba0654d7d30 \ No newline at end of file