Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-05-04 22:37:39 +0300
committerGitHub <noreply@github.com>2017-05-04 22:37:39 +0300
commit09f9e2ebb071ff7489d394c6a6c614a0d68cb7d5 (patch)
treeea81ac1a8a92f83d32e6ad70aa14c440e04f236f /src/System.Private.CoreLib/shared
parent0c122cf8affd8752def3b608c599135df3f0e78d (diff)
Fix ProjectN build break (#3517)
Diffstat (limited to 'src/System.Private.CoreLib/shared')
-rw-r--r--src/System.Private.CoreLib/shared/System/Resources/RuntimeResourceSet.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Resources/RuntimeResourceSet.cs b/src/System.Private.CoreLib/shared/System/Resources/RuntimeResourceSet.cs
index a2140506f..41d7541c2 100644
--- a/src/System.Private.CoreLib/shared/System/Resources/RuntimeResourceSet.cs
+++ b/src/System.Private.CoreLib/shared/System/Resources/RuntimeResourceSet.cs
@@ -161,7 +161,12 @@ namespace System.Resources
// into smaller chunks, each of size sqrt(n), would be substantially better for
// resource files containing thousands of resources.
//
- internal sealed class RuntimeResourceSet : ResourceSet, IEnumerable
+#if CORECLR
+ internal
+#else
+ public // On CoreRT, this must be public because of need to whitelist past the ReflectionBlock.
+#endif
+ sealed class RuntimeResourceSet : ResourceSet, IEnumerable
{
internal const int Version = 2; // File format version number