From: danmosemsft Date: Tue, 17 Jan 2017 23:46:45 +0000 (-0800) Subject: Remove FEATURE_COLLECTIBLE_TYPES symbol X-Git-Tag: submit/tizen/20210909.063632~11030^2~8377^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1fa75b8b18fac3bb5c837d9fbb3db61ce6eab722;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Remove FEATURE_COLLECTIBLE_TYPES symbol Commit migrated from https://github.com/dotnet/coreclr/commit/4aa0b8d6ec28ce759effe64c6babd4ae74018bce --- diff --git a/src/coreclr/clr.coreclr.props b/src/coreclr/clr.coreclr.props index 47371c3..c8c391c 100644 --- a/src/coreclr/clr.coreclr.props +++ b/src/coreclr/clr.coreclr.props @@ -7,7 +7,6 @@ true true true - true true true true diff --git a/src/coreclr/clr.defines.targets b/src/coreclr/clr.defines.targets index b4de3b5..98dff71 100644 --- a/src/coreclr/clr.defines.targets +++ b/src/coreclr/clr.defines.targets @@ -135,7 +135,6 @@ $(DefineConstants);FEATURE_CLASSIC_COMINTEROP $(DefineConstants);FEATURE_CLICKONCE $(DefineConstants);FEATURE_CODEPAGES_FILE - $(DefineConstants);FEATURE_COLLECTIBLE_TYPES $(DefineConstants);FEATURE_COMINTEROP $(DefineConstants);FEATURE_COMINTEROP_APARTMENT_SUPPORT $(DefineConstants);FEATURE_COMINTEROP_MANAGED_ACTIVATION diff --git a/src/coreclr/clr.desktop.props b/src/coreclr/clr.desktop.props index 682c85a..070c2aa 100644 --- a/src/coreclr/clr.desktop.props +++ b/src/coreclr/clr.desktop.props @@ -15,7 +15,6 @@ true true true - true true true true diff --git a/src/coreclr/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilder.cs b/src/coreclr/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilder.cs index 9331ae1..9520015 100644 --- a/src/coreclr/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilder.cs +++ b/src/coreclr/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilder.cs @@ -257,9 +257,7 @@ namespace System.Reflection.Emit #if FEATURE_REFLECTION_ONLY_LOAD && access != AssemblyBuilderAccess.ReflectionOnly #endif // FEATURE_REFLECTION_ONLY_LOAD -#if FEATURE_COLLECTIBLE_TYPES && access != AssemblyBuilderAccess.RunAndCollect -#endif // FEATURE_COLLECTIBLE_TYPES ) { throw new ArgumentException(Environment.GetResourceString("Arg_EnumIllegalVal", (int)access), nameof(access)); diff --git a/src/coreclr/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilderAccess.cs b/src/coreclr/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilderAccess.cs index 5c86d8e..398f3d9 100644 --- a/src/coreclr/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilderAccess.cs +++ b/src/coreclr/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilderAccess.cs @@ -18,8 +18,6 @@ namespace System.Reflection.Emit #if FEATURE_REFLECTION_ONLY_LOAD ReflectionOnly = 6, // 4 | Save, #endif // FEATURE_REFLECTION_ONLY_LOAD -#if FEATURE_COLLECTIBLE_TYPES RunAndCollect = 8 | Run -#endif } }