Imported Upstream version 6.0.0.207
Former-commit-id: 669b068a0086a928f56ccebfe966bf1d98acdb48
This commit is contained in:
parent
e0066d9519
commit
c466f3c4f3
@ -1 +1 @@
|
||||
874a4ec01311dc6c5075924f52a27c2988e99a1b
|
||||
2e75a6126574ffb90f2a89ff8434ad0c6b856281
|
@ -1 +1 @@
|
||||
f516f0141e10f66dfb40a6be7786f4c4b2a983c1
|
||||
56f546f26f3214afc8d7af07874855411303d06e
|
@ -1 +1 @@
|
||||
8032967cda854fd0a8da61b948d712619404f38e
|
||||
44384220745bdb3ead5e68f414891ec50eec5569
|
@ -1 +1 @@
|
||||
e58697fbad47030341a815f7ffbc5d51da7ef5c0
|
||||
f37b7c2d4c39f0e7037808844a6da37a890cc5d5
|
@ -1 +1 @@
|
||||
c0e8ebdf8c6a6b99c0582e57a7cfb4229850069d
|
||||
75f7be33bba50e7c6162cc7a0d1340853e6959f9
|
@ -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.205";
|
||||
public const string MonoVersion = "6.0.0.207";
|
||||
public const string MonoCompany = "Mono development team";
|
||||
public const string MonoProduct = "Mono Common Language Infrastructure";
|
||||
public const string MonoCopyright = "(c) Various Mono authors";
|
||||
|
@ -5,6 +5,9 @@ namespace System.IO
|
||||
{
|
||||
public partial class Directory
|
||||
{
|
||||
public static DirectoryInfo CreateDirectory (string path, System.Security.AccessControl.DirectorySecurity directorySecurity)
|
||||
=> CreateDirectory (path); //ignore directorySecurity
|
||||
|
||||
public static DirectorySecurity GetAccessControl(string path, AccessControlSections includeSections)
|
||||
{
|
||||
return new DirectorySecurity (path, includeSections);
|
||||
|
@ -8,6 +8,11 @@ namespace System.IO
|
||||
{
|
||||
private DirectoryInfo(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
||||
|
||||
public void Create (System.Security.AccessControl.DirectorySecurity directorySecurity)
|
||||
=> FileSystem.CreateDirectory (FullPath); // ignore directorySecurity
|
||||
public DirectoryInfo CreateSubdirectory (string path, System.Security.AccessControl.DirectorySecurity directorySecurity)
|
||||
=> CreateSubdirectory (path);
|
||||
|
||||
public DirectorySecurity GetAccessControl()
|
||||
{
|
||||
return Directory.GetAccessControl(FullPath, AccessControlSections.Access | AccessControlSections.Owner | AccessControlSections.Group);
|
||||
|
@ -5,6 +5,9 @@ namespace System.IO
|
||||
{
|
||||
public partial class File
|
||||
{
|
||||
public static FileStream Create (string path, int bufferSize, FileOptions options, System.Security.AccessControl.FileSecurity fileSecurity)
|
||||
=> new FileStream(path, FileMode.Create, FileAccess.ReadWrite, FileShare.None, bufferSize, options); // ignore fileSecurity
|
||||
|
||||
public static FileSecurity GetAccessControl (string path)
|
||||
{
|
||||
// AccessControlSections.Audit requires special permissions.
|
||||
@ -27,5 +30,5 @@ namespace System.IO
|
||||
|
||||
fileSecurity.PersistModifications (path);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1 +1 @@
|
||||
fbac8fa50986dbf39863ea8b3628ed0df15e135a
|
||||
950b440861ed918cee6972cb02f0b0e6fca0436f
|
@ -1 +1 @@
|
||||
4d282c7948e59697eabb11fb03b14ad2c8a19245
|
||||
07e999befe04c1a7241e2eef0ead2d79eac9f6f7
|
@ -1 +1 @@
|
||||
f709e4dc2dea5b2431b22443500ec10aa9b4c327
|
||||
c248646ab7b735c9a6a1c5553398aab0fdd38c02
|
Binary file not shown.
@ -1 +1 @@
|
||||
f0e695ae775fc1d2adb9cfe35eb56adb28b30679
|
||||
e26fb15307669fd2099f7d3d8d51ece90e27e3c0
|
@ -1 +1 @@
|
||||
9b54a742b5a4000205afa63a496880bf2e9ca84b
|
||||
1fed7795d1dbeec82e760e90525daa3845dd967d
|
@ -1 +1 @@
|
||||
c977817a68104493619e62eb6335c80dee8ce69a
|
||||
f11414105e638d6a072c87d8feebdb65060b59c8
|
@ -1 +1 @@
|
||||
d9f38965a8e823355e344b9717bf703041372f3d
|
||||
95be4d8888b8041b726fdc3a85a0abdd1108de30
|
@ -1 +1 @@
|
||||
fbac8fa50986dbf39863ea8b3628ed0df15e135a
|
||||
950b440861ed918cee6972cb02f0b0e6fca0436f
|
@ -1 +1 @@
|
||||
4d282c7948e59697eabb11fb03b14ad2c8a19245
|
||||
07e999befe04c1a7241e2eef0ead2d79eac9f6f7
|
@ -1 +1 @@
|
||||
f709e4dc2dea5b2431b22443500ec10aa9b4c327
|
||||
c248646ab7b735c9a6a1c5553398aab0fdd38c02
|
Binary file not shown.
@ -1 +1 @@
|
||||
f0e695ae775fc1d2adb9cfe35eb56adb28b30679
|
||||
e26fb15307669fd2099f7d3d8d51ece90e27e3c0
|
@ -1 +1 @@
|
||||
9b54a742b5a4000205afa63a496880bf2e9ca84b
|
||||
1fed7795d1dbeec82e760e90525daa3845dd967d
|
@ -1 +1 @@
|
||||
c977817a68104493619e62eb6335c80dee8ce69a
|
||||
f11414105e638d6a072c87d8feebdb65060b59c8
|
@ -1 +1 @@
|
||||
d9f38965a8e823355e344b9717bf703041372f3d
|
||||
95be4d8888b8041b726fdc3a85a0abdd1108de30
|
@ -1 +1 @@
|
||||
fbac8fa50986dbf39863ea8b3628ed0df15e135a
|
||||
950b440861ed918cee6972cb02f0b0e6fca0436f
|
@ -1 +1 @@
|
||||
4d282c7948e59697eabb11fb03b14ad2c8a19245
|
||||
07e999befe04c1a7241e2eef0ead2d79eac9f6f7
|
@ -1 +1 @@
|
||||
f709e4dc2dea5b2431b22443500ec10aa9b4c327
|
||||
c248646ab7b735c9a6a1c5553398aab0fdd38c02
|
Binary file not shown.
@ -1 +1 @@
|
||||
f0e695ae775fc1d2adb9cfe35eb56adb28b30679
|
||||
e26fb15307669fd2099f7d3d8d51ece90e27e3c0
|
@ -1 +1 @@
|
||||
9b54a742b5a4000205afa63a496880bf2e9ca84b
|
||||
1fed7795d1dbeec82e760e90525daa3845dd967d
|
@ -1 +1 @@
|
||||
c977817a68104493619e62eb6335c80dee8ce69a
|
||||
f11414105e638d6a072c87d8feebdb65060b59c8
|
@ -1 +1 @@
|
||||
d9f38965a8e823355e344b9717bf703041372f3d
|
||||
95be4d8888b8041b726fdc3a85a0abdd1108de30
|
@ -1 +1 @@
|
||||
fbac8fa50986dbf39863ea8b3628ed0df15e135a
|
||||
950b440861ed918cee6972cb02f0b0e6fca0436f
|
@ -1 +1 @@
|
||||
4d282c7948e59697eabb11fb03b14ad2c8a19245
|
||||
07e999befe04c1a7241e2eef0ead2d79eac9f6f7
|
@ -1 +1 @@
|
||||
f25a0c95f6bd5ce8b3bc6e92c15a3e3babfa2217
|
||||
4ecbea5c1b0dfde4812c8eba5a1a380f6adac143
|
Binary file not shown.
@ -1 +1 @@
|
||||
f0e695ae775fc1d2adb9cfe35eb56adb28b30679
|
||||
e26fb15307669fd2099f7d3d8d51ece90e27e3c0
|
@ -1 +1 @@
|
||||
9b54a742b5a4000205afa63a496880bf2e9ca84b
|
||||
1fed7795d1dbeec82e760e90525daa3845dd967d
|
@ -1 +1 @@
|
||||
c977817a68104493619e62eb6335c80dee8ce69a
|
||||
f11414105e638d6a072c87d8feebdb65060b59c8
|
@ -1 +1 @@
|
||||
edc65dad432879f2515c96ce0910bcf8876cab8d
|
||||
ab93531e2185fed98bcb02e97150c5ad0c2f9e51
|
@ -1 +1 @@
|
||||
#define FULL_VERSION "explicit/00362f5"
|
||||
#define FULL_VERSION "explicit/d04d534"
|
||||
|
@ -1442,10 +1442,10 @@ distclean-generic:
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
@CROSS_COMPILE_TRUE@clean-local:
|
||||
@HOST_WIN32_TRUE@clean-local:
|
||||
@CROSS_COMPILE_TRUE@test-local:
|
||||
@HOST_WIN32_TRUE@test-local:
|
||||
@CROSS_COMPILE_TRUE@clean-local:
|
||||
@HOST_WIN32_TRUE@clean-local:
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-checkPROGRAMS clean-generic clean-libtool clean-local \
|
||||
|
BIN
po/mcs/de.gmo
BIN
po/mcs/de.gmo
Binary file not shown.
@ -1 +1 @@
|
||||
5752897f532a1482efd12a0475e45c3e2089632a
|
||||
2f42cf79ad78d0b139800a7bcaf62e1beb662cba
|
BIN
po/mcs/es.gmo
BIN
po/mcs/es.gmo
Binary file not shown.
@ -1 +1 @@
|
||||
5564073c3ef87fb7584b06785b9cf8400f399a6f
|
||||
e892bf1c4e2ec9d3e2cd668be33345fae47a6a9f
|
BIN
po/mcs/ja.gmo
BIN
po/mcs/ja.gmo
Binary file not shown.
@ -1 +1 @@
|
||||
e8827dcb68689563e396a2f329d2c7b63fef6342
|
||||
cadcd7d95d1f4822c27bbc821ee39a67598563e1
|
@ -6,9 +6,9 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mono 6.0.0.205\n"
|
||||
"Project-Id-Version: mono 6.0.0.207\n"
|
||||
"Report-Msgid-Bugs-To: http://www.mono-project.com/Bugs\n"
|
||||
"POT-Creation-Date: 2019-04-30 08:12+0000\n"
|
||||
"POT-Creation-Date: 2019-05-01 08:07+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 @@
|
||||
3904eab63cefdcac10f7cc7ab5987be2441293d3
|
||||
9aa8c6f5070de6b813b576fb7b7bb3d84fbc3ff1
|
Loading…
x
Reference in New Issue
Block a user