From 95798f74eaca7232b98a5c7a5721c03cb4211952 Mon Sep 17 00:00:00 2001 From: Steve Pfister Date: Thu, 27 Feb 2020 13:23:32 -0500 Subject: [PATCH] Added missing InteropServices.WindowsRuntime types to mono SPC (#32905) Addresses https://github.com/dotnet/runtime/issues/32898 --- src/coreclr/src/System.Private.CoreLib/System.Private.CoreLib.csproj | 2 -- .../src/System.Private.CoreLib.Shared.projitems | 4 ++++ .../src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs | 0 .../Runtime/InteropServices/WindowsRuntime/IActivationFactory.cs | 0 4 files changed, 4 insertions(+), 2 deletions(-) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/IActivationFactory.cs (100%) diff --git a/src/coreclr/src/System.Private.CoreLib/System.Private.CoreLib.csproj b/src/coreclr/src/System.Private.CoreLib/System.Private.CoreLib.csproj index 3ee759b..0fcdf4f 100644 --- a/src/coreclr/src/System.Private.CoreLib/System.Private.CoreLib.csproj +++ b/src/coreclr/src/System.Private.CoreLib/System.Private.CoreLib.csproj @@ -351,7 +351,6 @@ - @@ -364,7 +363,6 @@ - diff --git a/src/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems b/src/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems index 97e7702..07cd0a9 100644 --- a/src/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems +++ b/src/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems @@ -1494,6 +1494,10 @@ + + + + diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/IActivationFactory.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/IActivationFactory.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/IActivationFactory.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/IActivationFactory.cs -- 2.7.4