From e7ada5ada909fed5f69db9b56feb24f877470634 Mon Sep 17 00:00:00 2001 From: Vatsan Madhavan Date: Tue, 10 Sep 2019 14:53:12 -0700 Subject: [PATCH 01/12] Update project TargetFramework(s) to netcoreapp3.1 and set TargetFrameworkVersion=v3.1 --- eng/WpfArcadeSdk/tools/Wpf.Cpp.targets | 2 +- eng/helixpublish.proj | 4 ++-- .../Microsoft.DotNet.Arcade.Wpf.Sdk.ArchNeutral.csproj | 2 +- .../Microsoft.DotNet.Wpf.GitHub.ArchNeutral.csproj | 2 +- .../Microsoft.DotNet.Wpf.GitHub.csproj | 2 +- .../Microsoft.DotNet.Wpf.ProjectTemplates.ArchNeutral.csproj | 2 +- .../Microsoft.NET.Sdk.WindowsDesktop.ArchNeutral.csproj | 2 +- .../PresentationFramework-PresentationUI-api-cycle.csproj | 2 +- .../PresentationFramework-ReachFramework-impl-cycle.csproj | 2 +- .../PresentationFramework-System.Printing-api-cycle.csproj | 2 +- .../PresentationFramework-System.Printing-impl-cycle.csproj | 2 +- .../PresentationUI-PresentationFramework-impl-cycle.csproj | 2 +- .../ReachFramework-PresentationFramework-api-cycle.csproj | 2 +- .../ReachFramework-System.Printing-api-cycle.csproj | 2 +- .../System.Printing-PresentationFramework-api-cycle.csproj | 2 +- .../src/DirectWriteForwarder/DirectWriteForwarder.vcxproj | 4 ++-- .../PresentationFramework-SystemCore.csproj | 2 +- .../PresentationFramework-SystemData.csproj | 2 +- .../PresentationFramework-SystemDrawing.csproj | 2 +- .../PresentationFramework-SystemXml.csproj | 2 +- .../PresentationFramework-SystemXmlLinq.csproj | 2 +- .../src/PresentationCore/PresentationCore.csproj | 2 +- .../src/PresentationCore/ref/PresentationCore-ref.csproj | 2 +- .../src/PresentationFramework/PresentationFramework.csproj | 2 +- .../ref/PresentationFramework-ref.csproj | 2 +- .../src/PresentationUI/PresentationUI.csproj | 2 +- .../src/PresentationUI/ref/PresentationUI-ref.csproj | 2 +- .../src/ReachFramework/ReachFramework.csproj | 2 +- .../src/ReachFramework/ref/ReachFramework-ref.csproj | 2 +- .../src/System.Printing/System.Printing.vcxproj | 4 ++-- .../src/System.Printing/ref/System.Printing-ref.csproj | 2 +- .../System.Windows.Controls.Ribbon.csproj | 2 +- .../ref/System.Windows.Controls.Ribbon-ref.csproj | 2 +- .../System.Windows.Input.Manipulations.csproj | 2 +- .../ref/System.Windows.Input.Manipulations-ref.csproj | 2 +- .../System.Windows.Presentation.csproj | 2 +- .../ref/System.Windows.Presentation-ref.csproj | 2 +- src/Microsoft.DotNet.Wpf/src/System.Xaml/System.Xaml.csproj | 2 +- .../src/System.Xaml/ref/System.Xaml-ref.csproj | 2 +- .../PresentationFramework.Aero.csproj | 2 +- .../ref/PresentationFramework.Aero-ref.csproj | 2 +- .../PresentationFramework.Aero2.csproj | 2 +- .../ref/PresentationFramework.Aero2-ref.csproj | 2 +- .../PresentationFramework.AeroLite.csproj | 2 +- .../ref/PresentationFramework.AeroLite-ref.csproj | 2 +- .../PresentationFramework.Classic.csproj | 2 +- .../ref/PresentationFramework.Classic-ref.csproj | 2 +- .../PresentationFramework.Luna.csproj | 2 +- .../ref/PresentationFramework.Luna-ref.csproj | 2 +- .../PresentationFramework.Royale.csproj | 2 +- .../ref/PresentationFramework.Royale-ref.csproj | 2 +- .../UIAutomation/UIAutomationClient/UIAutomationClient.csproj | 2 +- .../UIAutomationClient/ref/UIAutomationClient-ref.csproj | 2 +- .../UIAutomationClientSideProviders.csproj | 2 +- .../ref/UIAutomationClientSideProviders-ref.csproj | 2 +- .../UIAutomationProvider/UIAutomationProvider.csproj | 2 +- .../UIAutomationProvider/ref/UIAutomationProvider-ref.csproj | 2 +- .../UIAutomation/UIAutomationTypes/UIAutomationTypes.csproj | 2 +- .../UIAutomationTypes/ref/UIAutomationTypes-ref.csproj | 2 +- src/Microsoft.DotNet.Wpf/src/WindowsBase/WindowsBase.csproj | 2 +- .../src/WindowsBase/ref/WindowsBase-ref.csproj | 2 +- .../WindowsFormsIntegration/WindowsFormsIntegration.csproj | 2 +- .../ref/WindowsFormsIntegration-ref.csproj | 2 +- src/Microsoft.DotNet.Wpf/test/MultiTargeting.props | 2 +- 64 files changed, 67 insertions(+), 67 deletions(-) diff --git a/eng/WpfArcadeSdk/tools/Wpf.Cpp.targets b/eng/WpfArcadeSdk/tools/Wpf.Cpp.targets index a27a77b7b39..2f1e90464f7 100644 --- a/eng/WpfArcadeSdk/tools/Wpf.Cpp.targets +++ b/eng/WpfArcadeSdk/tools/Wpf.Cpp.targets @@ -326,7 +326,7 @@ using namespace System::Runtime::Versioning; - netcoreapp3.0 + netcoreapp3.1 AnyCPU%3Bx64 ]]> diff --git a/eng/helixpublish.proj b/eng/helixpublish.proj index 1fd47a3e5f5..d90ded6edd3 100644 --- a/eng/helixpublish.proj +++ b/eng/helixpublish.proj @@ -1,7 +1,7 @@ - netcoreapp3.0 + netcoreapp3.1 true NU5111 diff --git a/packaging/Microsoft.DotNet.Wpf.GitHub/Microsoft.DotNet.Wpf.GitHub.ArchNeutral.csproj b/packaging/Microsoft.DotNet.Wpf.GitHub/Microsoft.DotNet.Wpf.GitHub.ArchNeutral.csproj index d908eccc66c..e405e6d0690 100644 --- a/packaging/Microsoft.DotNet.Wpf.GitHub/Microsoft.DotNet.Wpf.GitHub.ArchNeutral.csproj +++ b/packaging/Microsoft.DotNet.Wpf.GitHub/Microsoft.DotNet.Wpf.GitHub.ArchNeutral.csproj @@ -1,7 +1,7 @@  9a7e395b-e859-40e2-809d-efb72cf3a2ee - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 diff --git a/packaging/Microsoft.DotNet.Wpf.GitHub/Microsoft.DotNet.Wpf.GitHub.csproj b/packaging/Microsoft.DotNet.Wpf.GitHub/Microsoft.DotNet.Wpf.GitHub.csproj index 46d1b123c68..c6d38e93244 100644 --- a/packaging/Microsoft.DotNet.Wpf.GitHub/Microsoft.DotNet.Wpf.GitHub.csproj +++ b/packaging/Microsoft.DotNet.Wpf.GitHub/Microsoft.DotNet.Wpf.GitHub.csproj @@ -1,7 +1,7 @@  c847934a-828c-4ebb-a004-b0e97c8313f4 - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 diff --git a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/Microsoft.DotNet.Wpf.ProjectTemplates.ArchNeutral.csproj b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/Microsoft.DotNet.Wpf.ProjectTemplates.ArchNeutral.csproj index 3049e925837..f4f5b097d2a 100644 --- a/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/Microsoft.DotNet.Wpf.ProjectTemplates.ArchNeutral.csproj +++ b/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/Microsoft.DotNet.Wpf.ProjectTemplates.ArchNeutral.csproj @@ -1,7 +1,7 @@  {BFF6C118-3369-43B5-ACA6-D65ED00EEBE0} - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 true 3.0.0 diff --git a/packaging/Microsoft.NET.Sdk.WindowsDesktop/Microsoft.NET.Sdk.WindowsDesktop.ArchNeutral.csproj b/packaging/Microsoft.NET.Sdk.WindowsDesktop/Microsoft.NET.Sdk.WindowsDesktop.ArchNeutral.csproj index 9ff025d8cee..b06c1e2a599 100644 --- a/packaging/Microsoft.NET.Sdk.WindowsDesktop/Microsoft.NET.Sdk.WindowsDesktop.ArchNeutral.csproj +++ b/packaging/Microsoft.NET.Sdk.WindowsDesktop/Microsoft.NET.Sdk.WindowsDesktop.ArchNeutral.csproj @@ -1,7 +1,7 @@  {440d06b8-e3de-4c0d-ad25-cd4f43d836e1} - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 true 3.0.0 diff --git a/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-PresentationUI-api-cycle.csproj b/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-PresentationUI-api-cycle.csproj index c46dac96075..b91c8a951fa 100644 --- a/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-PresentationUI-api-cycle.csproj +++ b/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-PresentationUI-api-cycle.csproj @@ -10,7 +10,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-ReachFramework-impl-cycle.csproj b/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-ReachFramework-impl-cycle.csproj index 879efd82be3..825164252ca 100644 --- a/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-ReachFramework-impl-cycle.csproj +++ b/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-ReachFramework-impl-cycle.csproj @@ -13,7 +13,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-System.Printing-api-cycle.csproj b/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-System.Printing-api-cycle.csproj index dd645037801..661a7e70163 100644 --- a/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-System.Printing-api-cycle.csproj +++ b/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-System.Printing-api-cycle.csproj @@ -11,7 +11,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-System.Printing-impl-cycle.csproj b/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-System.Printing-impl-cycle.csproj index 9b6c8d2c9e3..326a3c5bb29 100644 --- a/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-System.Printing-impl-cycle.csproj +++ b/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationFramework/PresentationFramework-System.Printing-impl-cycle.csproj @@ -13,7 +13,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationUI/PresentationUI-PresentationFramework-impl-cycle.csproj b/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationUI/PresentationUI-PresentationFramework-impl-cycle.csproj index 4fe9c0cf899..6cb86624a83 100644 --- a/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationUI/PresentationUI-PresentationFramework-impl-cycle.csproj +++ b/src/Microsoft.DotNet.Wpf/cycle-breakers/PresentationUI/PresentationUI-PresentationFramework-impl-cycle.csproj @@ -12,7 +12,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/cycle-breakers/ReachFramework/ReachFramework-PresentationFramework-api-cycle.csproj b/src/Microsoft.DotNet.Wpf/cycle-breakers/ReachFramework/ReachFramework-PresentationFramework-api-cycle.csproj index 1cde2597520..fbd15b8f7e2 100644 --- a/src/Microsoft.DotNet.Wpf/cycle-breakers/ReachFramework/ReachFramework-PresentationFramework-api-cycle.csproj +++ b/src/Microsoft.DotNet.Wpf/cycle-breakers/ReachFramework/ReachFramework-PresentationFramework-api-cycle.csproj @@ -10,7 +10,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/cycle-breakers/ReachFramework/ReachFramework-System.Printing-api-cycle.csproj b/src/Microsoft.DotNet.Wpf/cycle-breakers/ReachFramework/ReachFramework-System.Printing-api-cycle.csproj index 64c365841cd..0dff55bd0ec 100644 --- a/src/Microsoft.DotNet.Wpf/cycle-breakers/ReachFramework/ReachFramework-System.Printing-api-cycle.csproj +++ b/src/Microsoft.DotNet.Wpf/cycle-breakers/ReachFramework/ReachFramework-System.Printing-api-cycle.csproj @@ -10,7 +10,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/cycle-breakers/System.Printing/System.Printing-PresentationFramework-api-cycle.csproj b/src/Microsoft.DotNet.Wpf/cycle-breakers/System.Printing/System.Printing-PresentationFramework-api-cycle.csproj index b122a3181fa..d9e69581a7a 100644 --- a/src/Microsoft.DotNet.Wpf/cycle-breakers/System.Printing/System.Printing-PresentationFramework-api-cycle.csproj +++ b/src/Microsoft.DotNet.Wpf/cycle-breakers/System.Printing/System.Printing-PresentationFramework-api-cycle.csproj @@ -10,7 +10,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/src/DirectWriteForwarder/DirectWriteForwarder.vcxproj b/src/Microsoft.DotNet.Wpf/src/DirectWriteForwarder/DirectWriteForwarder.vcxproj index a152ce23e40..45a4d1e7803 100644 --- a/src/Microsoft.DotNet.Wpf/src/DirectWriteForwarder/DirectWriteForwarder.vcxproj +++ b/src/Microsoft.DotNet.Wpf/src/DirectWriteForwarder/DirectWriteForwarder.vcxproj @@ -27,9 +27,9 @@ - - netcoreapp3.0 + netcoreapp3.1 .NETCoreApp + v3.1 diff --git a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemCore/PresentationFramework-SystemCore.csproj b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemCore/PresentationFramework-SystemCore.csproj index ae90fb22271..d74129c1ae3 100644 --- a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemCore/PresentationFramework-SystemCore.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemCore/PresentationFramework-SystemCore.csproj @@ -1,6 +1,6 @@  - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 false false diff --git a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemData/PresentationFramework-SystemData.csproj b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemData/PresentationFramework-SystemData.csproj index fca66dfba37..b130cd99203 100644 --- a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemData/PresentationFramework-SystemData.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemData/PresentationFramework-SystemData.csproj @@ -1,6 +1,6 @@  - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 false false diff --git a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemDrawing/PresentationFramework-SystemDrawing.csproj b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemDrawing/PresentationFramework-SystemDrawing.csproj index 6b6616680ab..56f2e8ba9ab 100644 --- a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemDrawing/PresentationFramework-SystemDrawing.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemDrawing/PresentationFramework-SystemDrawing.csproj @@ -1,6 +1,6 @@  - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 false false diff --git a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXml/PresentationFramework-SystemXml.csproj b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXml/PresentationFramework-SystemXml.csproj index 63b23198ed4..2ea28f37c63 100644 --- a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXml/PresentationFramework-SystemXml.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXml/PresentationFramework-SystemXml.csproj @@ -1,6 +1,6 @@  - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 false false diff --git a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXmlLinq/PresentationFramework-SystemXmlLinq.csproj b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXmlLinq/PresentationFramework-SystemXmlLinq.csproj index 922c1cfd2b5..dd7442553e6 100644 --- a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXmlLinq/PresentationFramework-SystemXmlLinq.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXmlLinq/PresentationFramework-SystemXmlLinq.csproj @@ -1,6 +1,6 @@  - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 false false diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationCore/PresentationCore.csproj b/src/Microsoft.DotNet.Wpf/src/PresentationCore/PresentationCore.csproj index c01546b7fe3..2207505cef1 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationCore/PresentationCore.csproj +++ b/src/Microsoft.DotNet.Wpf/src/PresentationCore/PresentationCore.csproj @@ -13,7 +13,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationCore/ref/PresentationCore-ref.csproj b/src/Microsoft.DotNet.Wpf/src/PresentationCore/ref/PresentationCore-ref.csproj index 73dcdc1175f..cec007893bf 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationCore/ref/PresentationCore-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/PresentationCore/ref/PresentationCore-ref.csproj @@ -11,7 +11,7 @@ MS.Internal.PresentationCore None AnyCPU;x64 - netcoreapp3.0 + netcoreapp3.1 diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationFramework/PresentationFramework.csproj b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/PresentationFramework.csproj index 11a38c78048..42007b1fc43 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationFramework/PresentationFramework.csproj +++ b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/PresentationFramework.csproj @@ -12,7 +12,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/PresentationFramework-ref.csproj b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/PresentationFramework-ref.csproj index c8d3e701836..8951cf51c62 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/PresentationFramework-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/PresentationFramework-ref.csproj @@ -11,7 +11,7 @@ None AnyCPU;x64 false - netcoreapp3.0 + netcoreapp3.1 diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationUI/PresentationUI.csproj b/src/Microsoft.DotNet.Wpf/src/PresentationUI/PresentationUI.csproj index 032075f6949..81c16a42c0e 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationUI/PresentationUI.csproj +++ b/src/Microsoft.DotNet.Wpf/src/PresentationUI/PresentationUI.csproj @@ -2,7 +2,7 @@ - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationUI/ref/PresentationUI-ref.csproj b/src/Microsoft.DotNet.Wpf/src/PresentationUI/ref/PresentationUI-ref.csproj index 6e015e23c5c..c13c87b98b9 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationUI/ref/PresentationUI-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/PresentationUI/ref/PresentationUI-ref.csproj @@ -3,7 +3,7 @@ PresentationUI PresentationUI-ref $(TargetGroup)-$(PackageId)/ - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/ReachFramework/ReachFramework.csproj b/src/Microsoft.DotNet.Wpf/src/ReachFramework/ReachFramework.csproj index c2301de6145..09a0d212fc2 100644 --- a/src/Microsoft.DotNet.Wpf/src/ReachFramework/ReachFramework.csproj +++ b/src/Microsoft.DotNet.Wpf/src/ReachFramework/ReachFramework.csproj @@ -10,7 +10,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/src/ReachFramework/ref/ReachFramework-ref.csproj b/src/Microsoft.DotNet.Wpf/src/ReachFramework/ref/ReachFramework-ref.csproj index 61a541f8d16..cc28e065833 100644 --- a/src/Microsoft.DotNet.Wpf/src/ReachFramework/ref/ReachFramework-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/ReachFramework/ref/ReachFramework-ref.csproj @@ -10,7 +10,7 @@ None AnyCPU;x64 false - netcoreapp3.0 + netcoreapp3.1 diff --git a/src/Microsoft.DotNet.Wpf/src/System.Printing/System.Printing.vcxproj b/src/Microsoft.DotNet.Wpf/src/System.Printing/System.Printing.vcxproj index 0522136eae9..08cc4cf9fbc 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Printing/System.Printing.vcxproj +++ b/src/Microsoft.DotNet.Wpf/src/System.Printing/System.Printing.vcxproj @@ -27,9 +27,9 @@ - - netcoreapp3.0 + netcoreapp3.1 .NETCoreApp + v3.1 diff --git a/src/Microsoft.DotNet.Wpf/src/System.Printing/ref/System.Printing-ref.csproj b/src/Microsoft.DotNet.Wpf/src/System.Printing/ref/System.Printing-ref.csproj index a0d92a2a7e1..fda32172884 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Printing/ref/System.Printing-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/System.Printing/ref/System.Printing-ref.csproj @@ -10,7 +10,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/src/System.Windows.Controls.Ribbon/System.Windows.Controls.Ribbon.csproj b/src/Microsoft.DotNet.Wpf/src/System.Windows.Controls.Ribbon/System.Windows.Controls.Ribbon.csproj index 63112772439..aeba6b7d741 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Windows.Controls.Ribbon/System.Windows.Controls.Ribbon.csproj +++ b/src/Microsoft.DotNet.Wpf/src/System.Windows.Controls.Ribbon/System.Windows.Controls.Ribbon.csproj @@ -2,7 +2,7 @@ - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 false $(DefineConstants);RIBBON_IN_FRAMEWORK diff --git a/src/Microsoft.DotNet.Wpf/src/System.Windows.Controls.Ribbon/ref/System.Windows.Controls.Ribbon-ref.csproj b/src/Microsoft.DotNet.Wpf/src/System.Windows.Controls.Ribbon/ref/System.Windows.Controls.Ribbon-ref.csproj index 91a7a7afeeb..b67c3d9fb46 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Windows.Controls.Ribbon/ref/System.Windows.Controls.Ribbon-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/System.Windows.Controls.Ribbon/ref/System.Windows.Controls.Ribbon-ref.csproj @@ -4,7 +4,7 @@ System.Windows.Controls.Ribbon System.Windows.Controls.Ribbon-ref $(TargetGroup)-$(PackageId)/ - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 $(DefineConstants);RIBBON_IN_FRAMEWORK $(NoWarn);0618 diff --git a/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/System.Windows.Input.Manipulations.csproj b/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/System.Windows.Input.Manipulations.csproj index cad812beaca..86da9d5d804 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/System.Windows.Input.Manipulations.csproj +++ b/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/System.Windows.Input.Manipulations.csproj @@ -1,6 +1,6 @@  - netcoreapp3.0 + netcoreapp3.1 false AnyCPU;x64 diff --git a/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/ref/System.Windows.Input.Manipulations-ref.csproj b/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/ref/System.Windows.Input.Manipulations-ref.csproj index dfcb8b174fc..cb0614c1603 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/ref/System.Windows.Input.Manipulations-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/ref/System.Windows.Input.Manipulations-ref.csproj @@ -3,7 +3,7 @@ System.Windows.Input.Manipulations System.Windows.Input.Manipulations-ref $(TargetGroup)-$(PackageId)/ - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 diff --git a/src/Microsoft.DotNet.Wpf/src/System.Windows.Presentation/System.Windows.Presentation.csproj b/src/Microsoft.DotNet.Wpf/src/System.Windows.Presentation/System.Windows.Presentation.csproj index c29c3a78fc6..f46a3018065 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Windows.Presentation/System.Windows.Presentation.csproj +++ b/src/Microsoft.DotNet.Wpf/src/System.Windows.Presentation/System.Windows.Presentation.csproj @@ -1,6 +1,6 @@  - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 false false diff --git a/src/Microsoft.DotNet.Wpf/src/System.Windows.Presentation/ref/System.Windows.Presentation-ref.csproj b/src/Microsoft.DotNet.Wpf/src/System.Windows.Presentation/ref/System.Windows.Presentation-ref.csproj index 39e70697b1c..f7925a39a70 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Windows.Presentation/ref/System.Windows.Presentation-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/System.Windows.Presentation/ref/System.Windows.Presentation-ref.csproj @@ -3,7 +3,7 @@ System.Windows.Presentation System.Windows.Presentation-ref $(TargetGroup)-$(PackageId)/ - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System.Xaml.csproj b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System.Xaml.csproj index cf991d26a39..9dd0349dc70 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System.Xaml.csproj +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System.Xaml.csproj @@ -2,7 +2,7 @@ {9AC36357-34B7-40A1-95CA-FE9F46D089A7} System.Xaml - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 $(NoWarn);0618;NU5125;0618 $(DefineConstants);OLDRESOURCES;SYSTEM_XAML diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/ref/System.Xaml-ref.csproj b/src/Microsoft.DotNet.Wpf/src/System.Xaml/ref/System.Xaml-ref.csproj index 637e4ca0dc2..0fcb69c7e4a 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/ref/System.Xaml-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/ref/System.Xaml-ref.csproj @@ -3,7 +3,7 @@ System.Xaml System.Xaml-ref $(TargetGroup)-$(PackageId)/ - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 $(NoWarn);0618;NU5125;0618 $(DefineConstants);OLDRESOURCES;SYSTEM_XAML diff --git a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero/PresentationFramework.Aero.csproj b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero/PresentationFramework.Aero.csproj index 0649c381b6c..385988d8908 100644 --- a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero/PresentationFramework.Aero.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero/PresentationFramework.Aero.csproj @@ -3,7 +3,7 @@ - netcoreapp3.0 + netcoreapp3.1 None AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero/ref/PresentationFramework.Aero-ref.csproj b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero/ref/PresentationFramework.Aero-ref.csproj index d10a09dbfa1..7a418dce0ce 100644 --- a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero/ref/PresentationFramework.Aero-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero/ref/PresentationFramework.Aero-ref.csproj @@ -5,7 +5,7 @@ PresentationFramework.Aero PresentationFramework.Aero-ref $(TargetGroup)-$(PackageId)/ - netcoreapp3.0 + netcoreapp3.1 None AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero2/PresentationFramework.Aero2.csproj b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero2/PresentationFramework.Aero2.csproj index f4dd676b2a4..93d1cc129e2 100644 --- a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero2/PresentationFramework.Aero2.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero2/PresentationFramework.Aero2.csproj @@ -3,7 +3,7 @@ - netcoreapp3.0 + netcoreapp3.1 None AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero2/ref/PresentationFramework.Aero2-ref.csproj b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero2/ref/PresentationFramework.Aero2-ref.csproj index c9e737ff831..4a6779d3812 100644 --- a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero2/ref/PresentationFramework.Aero2-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Aero2/ref/PresentationFramework.Aero2-ref.csproj @@ -5,7 +5,7 @@ PresentationFramework.Aero2 PresentationFramework.Aero2-ref $(TargetGroup)-$(PackageId)/ - netcoreapp3.0 + netcoreapp3.1 None AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.AeroLite/PresentationFramework.AeroLite.csproj b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.AeroLite/PresentationFramework.AeroLite.csproj index 6ca129e39d3..a7c2a669ce6 100644 --- a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.AeroLite/PresentationFramework.AeroLite.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.AeroLite/PresentationFramework.AeroLite.csproj @@ -3,7 +3,7 @@ - netcoreapp3.0 + netcoreapp3.1 None AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.AeroLite/ref/PresentationFramework.AeroLite-ref.csproj b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.AeroLite/ref/PresentationFramework.AeroLite-ref.csproj index 04b2056feab..ff52b26042e 100644 --- a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.AeroLite/ref/PresentationFramework.AeroLite-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.AeroLite/ref/PresentationFramework.AeroLite-ref.csproj @@ -5,7 +5,7 @@ PresentationFramework.AeroLite PresentationFramework.AeroLite-ref $(TargetGroup)-$(PackageId)/ - netcoreapp3.0 + netcoreapp3.1 None AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Classic/PresentationFramework.Classic.csproj b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Classic/PresentationFramework.Classic.csproj index 17bee77fe98..aa833a2152c 100644 --- a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Classic/PresentationFramework.Classic.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Classic/PresentationFramework.Classic.csproj @@ -3,7 +3,7 @@ - netcoreapp3.0 + netcoreapp3.1 None AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Classic/ref/PresentationFramework.Classic-ref.csproj b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Classic/ref/PresentationFramework.Classic-ref.csproj index a7089b72649..68776516e5e 100644 --- a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Classic/ref/PresentationFramework.Classic-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Classic/ref/PresentationFramework.Classic-ref.csproj @@ -5,7 +5,7 @@ PresentationFramework.Classic PresentationFramework.Classic-ref $(TargetGroup)-$(PackageId)/ - netcoreapp3.0 + netcoreapp3.1 None AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Luna/PresentationFramework.Luna.csproj b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Luna/PresentationFramework.Luna.csproj index 6a0e5663775..b746c5264ac 100644 --- a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Luna/PresentationFramework.Luna.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Luna/PresentationFramework.Luna.csproj @@ -3,7 +3,7 @@ - netcoreapp3.0 + netcoreapp3.1 None AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Luna/ref/PresentationFramework.Luna-ref.csproj b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Luna/ref/PresentationFramework.Luna-ref.csproj index c57a57f01a7..605aded8d93 100644 --- a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Luna/ref/PresentationFramework.Luna-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Luna/ref/PresentationFramework.Luna-ref.csproj @@ -5,7 +5,7 @@ PresentationFramework.Luna PresentationFramework.Luna-ref $(TargetGroup)-$(PackageId)/ - netcoreapp3.0 + netcoreapp3.1 None AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Royale/PresentationFramework.Royale.csproj b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Royale/PresentationFramework.Royale.csproj index f0e2aaf48cc..41b7358e707 100644 --- a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Royale/PresentationFramework.Royale.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Royale/PresentationFramework.Royale.csproj @@ -3,7 +3,7 @@ - netcoreapp3.0 + netcoreapp3.1 None AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Royale/ref/PresentationFramework.Royale-ref.csproj b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Royale/ref/PresentationFramework.Royale-ref.csproj index 929270b4cd6..d72380c475c 100644 --- a/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Royale/ref/PresentationFramework.Royale-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Themes/PresentationFramework.Royale/ref/PresentationFramework.Royale-ref.csproj @@ -5,7 +5,7 @@ PresentationFramework.Royale PresentationFramework.Royale-ref $(TargetGroup)-$(PackageId)/ - netcoreapp3.0 + netcoreapp3.1 None AnyCPU;x64 false diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/UIAutomationClient.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/UIAutomationClient.csproj index 5cbf4a564d9..7d2fa009a1d 100644 --- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/UIAutomationClient.csproj +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/UIAutomationClient.csproj @@ -7,7 +7,7 @@ $(NoWarn);0618;CA1821 - netcoreapp3.0 + netcoreapp3.1 false false diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/ref/UIAutomationClient-ref.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/ref/UIAutomationClient-ref.csproj index 4fa610d41cc..17fa3a40d1f 100644 --- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/ref/UIAutomationClient-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/ref/UIAutomationClient-ref.csproj @@ -7,7 +7,7 @@ true $(DefineConstants);UIAUTOMATIONCLIENT $(NoWarn);0618;CA1821 - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/UIAutomationClientSideProviders.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/UIAutomationClientSideProviders.csproj index 419e7001702..b003248f812 100644 --- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/UIAutomationClientSideProviders.csproj +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/UIAutomationClientSideProviders.csproj @@ -7,7 +7,7 @@ true - netcoreapp3.0 + netcoreapp3.1 false false diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/ref/UIAutomationClientSideProviders-ref.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/ref/UIAutomationClientSideProviders-ref.csproj index dd65b688744..78295bbff07 100644 --- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/ref/UIAutomationClientSideProviders-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/ref/UIAutomationClientSideProviders-ref.csproj @@ -7,7 +7,7 @@ $(DefineConstants);UIAUTOMATIONCLIENTSIDEPROVIDERS $(NoWarn);0618 true - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/UIAutomationProvider.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/UIAutomationProvider.csproj index dcc2ca6a212..7417b149b51 100644 --- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/UIAutomationProvider.csproj +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/UIAutomationProvider.csproj @@ -9,7 +9,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/ref/UIAutomationProvider-ref.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/ref/UIAutomationProvider-ref.csproj index 68544cffb2e..5bc8368895c 100644 --- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/ref/UIAutomationProvider-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/ref/UIAutomationProvider-ref.csproj @@ -9,7 +9,7 @@ MS.Internal.Automation SRID AnyCPU;x64 - netcoreapp3.0 + netcoreapp3.1 diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/UIAutomationTypes.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/UIAutomationTypes.csproj index e692e42ea86..96eb4a6b2e5 100644 --- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/UIAutomationTypes.csproj +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/UIAutomationTypes.csproj @@ -9,7 +9,7 @@ - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/ref/UIAutomationTypes-ref.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/ref/UIAutomationTypes-ref.csproj index a620c77dc86..fbbaa8e1370 100644 --- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/ref/UIAutomationTypes-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/ref/UIAutomationTypes-ref.csproj @@ -7,7 +7,7 @@ $(DefineConstants);UIAUTOMATIONTYPES $(NoWarn);0618 false - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 diff --git a/src/Microsoft.DotNet.Wpf/src/WindowsBase/WindowsBase.csproj b/src/Microsoft.DotNet.Wpf/src/WindowsBase/WindowsBase.csproj index 871caa101d6..f3cab56604a 100644 --- a/src/Microsoft.DotNet.Wpf/src/WindowsBase/WindowsBase.csproj +++ b/src/Microsoft.DotNet.Wpf/src/WindowsBase/WindowsBase.csproj @@ -7,7 +7,7 @@ $(NoWarn);0618 false {FA69991B-9696-42D0-A5C7-F5E73F0DEE9E} - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 diff --git a/src/Microsoft.DotNet.Wpf/src/WindowsBase/ref/WindowsBase-ref.csproj b/src/Microsoft.DotNet.Wpf/src/WindowsBase/ref/WindowsBase-ref.csproj index 43a890dea5b..4ae29b1aea4 100644 --- a/src/Microsoft.DotNet.Wpf/src/WindowsBase/ref/WindowsBase-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/WindowsBase/ref/WindowsBase-ref.csproj @@ -7,7 +7,7 @@ $(DefineConstants);WeakEventTelemetry $(NoWarn);0618 false - netcoreapp3.0 + netcoreapp3.1 AnyCPU;x64 diff --git a/src/Microsoft.DotNet.Wpf/src/WindowsFormsIntegration/WindowsFormsIntegration.csproj b/src/Microsoft.DotNet.Wpf/src/WindowsFormsIntegration/WindowsFormsIntegration.csproj index 2e6d8365d24..e531c3490dd 100644 --- a/src/Microsoft.DotNet.Wpf/src/WindowsFormsIntegration/WindowsFormsIntegration.csproj +++ b/src/Microsoft.DotNet.Wpf/src/WindowsFormsIntegration/WindowsFormsIntegration.csproj @@ -6,7 +6,7 @@ None - netcoreapp3.0 + netcoreapp3.1 false false diff --git a/src/Microsoft.DotNet.Wpf/src/WindowsFormsIntegration/ref/WindowsFormsIntegration-ref.csproj b/src/Microsoft.DotNet.Wpf/src/WindowsFormsIntegration/ref/WindowsFormsIntegration-ref.csproj index 59f0e0e4a0e..d58d7a8c6cd 100644 --- a/src/Microsoft.DotNet.Wpf/src/WindowsFormsIntegration/ref/WindowsFormsIntegration-ref.csproj +++ b/src/Microsoft.DotNet.Wpf/src/WindowsFormsIntegration/ref/WindowsFormsIntegration-ref.csproj @@ -7,7 +7,7 @@ $(DefineConstants);WINDOWSFORMSINTEGRATION $(NoWarn);0618 None - netcoreapp3.0 + netcoreapp3.1 false diff --git a/src/Microsoft.DotNet.Wpf/test/MultiTargeting.props b/src/Microsoft.DotNet.Wpf/test/MultiTargeting.props index f2482461c39..ec9bcf0bac9 100644 --- a/src/Microsoft.DotNet.Wpf/test/MultiTargeting.props +++ b/src/Microsoft.DotNet.Wpf/test/MultiTargeting.props @@ -1,6 +1,6 @@ - netcoreapp3.0 + netcoreapp3.1 From 0d56e697a2e01053cf73d40364d7d456e6794e04 Mon Sep 17 00:00:00 2001 From: Vatsan Madhavan Date: Tue, 10 Sep 2019 15:37:54 -0700 Subject: [PATCH 02/12] Add constant for 3.1 --- src/Microsoft.DotNet.Wpf/test/MultiTargeting.props | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.DotNet.Wpf/test/MultiTargeting.props b/src/Microsoft.DotNet.Wpf/test/MultiTargeting.props index ec9bcf0bac9..9186ff4663e 100644 --- a/src/Microsoft.DotNet.Wpf/test/MultiTargeting.props +++ b/src/Microsoft.DotNet.Wpf/test/MultiTargeting.props @@ -20,6 +20,8 @@ $(DefineConstants);NET472 $(DefineConstants);NETCOREAPP3_0 + $(DefineConstants);NETCOREAPP3_1 + @@ -62,4 +64,4 @@ - \ No newline at end of file + From a0451d76b8667a7848ad7eb8191c8e13a17b10fe Mon Sep 17 00:00:00 2001 From: Vatsan Madhavan Date: Tue, 10 Sep 2019 15:41:33 -0700 Subject: [PATCH 03/12] Update netcore version specific conditions --- .../tools/RuntimeFrameworkReference.props | 5 ++++- .../tools/RuntimeFrameworkReference.targets | 10 +++++++--- eng/WpfArcadeSdk/tools/SdkReferences.targets | 18 +++++++++++++----- .../tools/WpfProjectReference.targets | 7 ++++--- 4 files changed, 28 insertions(+), 12 deletions(-) diff --git a/eng/WpfArcadeSdk/tools/RuntimeFrameworkReference.props b/eng/WpfArcadeSdk/tools/RuntimeFrameworkReference.props index 05eca592371..ae3ee870e91 100644 --- a/eng/WpfArcadeSdk/tools/RuntimeFrameworkReference.props +++ b/eng/WpfArcadeSdk/tools/RuntimeFrameworkReference.props @@ -1,6 +1,9 @@ - $(MicrosoftNETCoreAppVersion) + $(MicrosoftNETCoreAppVersion) diff --git a/eng/WpfArcadeSdk/tools/RuntimeFrameworkReference.targets b/eng/WpfArcadeSdk/tools/RuntimeFrameworkReference.targets index 147b9b41d9d..f3f1cb90d19 100644 --- a/eng/WpfArcadeSdk/tools/RuntimeFrameworkReference.targets +++ b/eng/WpfArcadeSdk/tools/RuntimeFrameworkReference.targets @@ -13,7 +13,11 @@ Condition="'$(ManagedCxx)'=='true'"/> + Condition="'$(MicrosoftNETCoreAppVersion)'!='' + And '$(NoTargets)'!='true' + And '$(TargetFrameworkIdentifier)' == '.NETCoreApp' + And ('$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.1') + And '$(MSBuildProjectExtension)'!='.vcxproj'"> $(MicrosoftNETCoreAppVersion) @@ -25,7 +29,7 @@ - - + + diff --git a/eng/WpfArcadeSdk/tools/SdkReferences.targets b/eng/WpfArcadeSdk/tools/SdkReferences.targets index 092d75ae234..f241ab761e3 100644 --- a/eng/WpfArcadeSdk/tools/SdkReferences.targets +++ b/eng/WpfArcadeSdk/tools/SdkReferences.targets @@ -4,7 +4,10 @@ Version="$(MicrosoftPrivateWinformsVersion)" ExcludeAssets="All" GeneratePathProperty="True" - Condition="'$(MSBuildProjectExtension)'!='.vcxproj' And $(TargetFramework.StartsWith('netcoreapp3')) And '$(NoAutoMicrosoftPrivateWinformsReference)'!='true'"/> + Condition="'$(MSBuildProjectExtension)'!='.vcxproj' + And '$(TargetFrameworkIdentifier)' == '.NETCoreApp' + And ('$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.1') + And '$(NoAutoMicrosoftPrivateWinformsReference)'!='true'"/> + Condition="'@(MicrosoftPrivateWinFormsReference)'!='' + And '$(TargetFrameworkIdentifier)' == '.NETCoreApp' + And ('$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.1') "> diff --git a/eng/WpfArcadeSdk/tools/WpfProjectReference.targets b/eng/WpfArcadeSdk/tools/WpfProjectReference.targets index e80e7a0dca0..5e4af19c735 100644 --- a/eng/WpfArcadeSdk/tools/WpfProjectReference.targets +++ b/eng/WpfArcadeSdk/tools/WpfProjectReference.targets @@ -5,9 +5,10 @@ ExcludeAssets="All" GeneratePathProperty="True" Condition="'$(MSBuildProjectExtension)'!='.vcxproj' - And $(TargetFramework.StartsWith('netcoreapp3')) - And '$(NoAutoMicrosoftDotNetWpfGitHubPackageReference)'!='true' - And '$(MicrosoftDotNetWpfGitHubPackage)'!=''"/> + And '$(TargetFrameworkIdentifier)' == '.NETCoreApp' + And ('$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.1') + And '$(NoAutoMicrosoftDotNetWpfGitHubPackageReference)'!='true' + And '$(MicrosoftDotNetWpfGitHubPackage)'!=''"/> From 8975f75119fb021f4bb25075dd199b1eb467e8cf Mon Sep 17 00:00:00 2001 From: Vatsan Madhavan Date: Tue, 10 Sep 2019 15:47:57 -0700 Subject: [PATCH 04/12] Add System.Resources.Extensions references to PresentationUI --- eng/Version.Details.xml | 4 ++++ eng/Versions.props | 1 + .../src/PresentationUI/PresentationUI.csproj | 1 + 3 files changed, 6 insertions(+) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index beb89212c7c..8acb9a60030 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -107,5 +107,9 @@ https://github.com/dotnet/arcade 0f5cfb20a355c27bc84cedd049c946b44a7fc1da + + https://github.com/dotnet/corefx + d341fd37dcb2c22e382adccdc06770cf8f160577 + diff --git a/eng/Versions.props b/eng/Versions.props index 45457627210..fe4f0a4b1ad 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -5,6 +5,7 @@ preview1 true 4.0.0.0 + 4.6.0-rc1.19420.10 4.6.0-rc1.19420.10 diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationUI/PresentationUI.csproj b/src/Microsoft.DotNet.Wpf/src/PresentationUI/PresentationUI.csproj index 81c16a42c0e..6df095d4764 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationUI/PresentationUI.csproj +++ b/src/Microsoft.DotNet.Wpf/src/PresentationUI/PresentationUI.csproj @@ -222,6 +222,7 @@ + - - - Microsoft.NetCore.App - - - - + Condition="'@(NetCoreReference)' != '' And '@(Reference)' != ''"> - - - Microsoft.WindowsDesktop.App - - - - + Condition="'@(WindowsDesktopReference)'!='' and '@(Reference)' != ''"> - 4.8.1-preview1.19461.5 + 4.8.1-preview1.19461.15 - 3.0.0-rc1.19428.6 - 3.0.0-rc1.19428.6 - 3.0.0-rc1.19428.6 + 3.1.0-preview1.19459.7 + 3.1.0-preview1.19459.7 + 3.1.0-preview1.19459.7 - 3.0.0-rc1-19429-05 - 3.0.0-rc1.19420.10 - 4.6.0-rc1.19420.10 - 4.6.0-rc1.19420.10 - 4.6.0-rc1.19420.10 + 3.1.0-preview1.19459.38 + 3.1.0-preview1.19459.13 + 4.7.0-preview1.19459.13 + 4.7.0-preview1.19459.13 + 4.7.0-preview1.19459.13 - 4.6.0-rc1.19420.10 - 4.6.0-rc1.19420.10 - 4.6.0-rc1.19420.10 - 4.6.0-rc1.19420.10 - 4.6.0-rc1.19420.10 + 4.7.0-preview1.19459.13 + 4.7.0-preview1.19459.13 + 4.7.0-preview1.19459.13 + 4.7.0-preview1.19459.13 + 4.7.0-preview1.19459.13 4.6.0-preview4.19176.11 - 4.6.0-rc1.19420.10 - 4.6.0-rc1.19420.10 - 4.6.0-rc1.19420.10 - 4.6.0-rc1.19420.10 - 4.6.0-rc1.19420.10 + 4.7.0-preview1.19459.13 + 4.7.0-preview1.19459.13 + 4.7.0-preview1.19459.13 + 4.7.0-preview1.19459.13 + 4.7.0-preview1.19459.13 @@ -114,6 +114,6 @@ It is worth reiterating that this package *should not* be consumed to build the product. --> - 5.0.0-alpha1.19420.2 + 4.8.1-preview1.19461.9 From 7f91d7c79eaddf12b5528a39e0f08e6f22967ad4 Mon Sep 17 00:00:00 2001 From: Vatsan Madhavan Date: Wed, 11 Sep 2019 16:10:28 -0700 Subject: [PATCH 11/12] Workaround for https://github.com/dotnet/core-sdk/issues/4744 .NET Core 3.1 SDK hasn't consumed the fix for https://github.com/NuGet/Home/issues/8467 yet. Suppress these warnings temporarily --- eng/WpfArcadeSdk/Sdk/Sdk.props | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/eng/WpfArcadeSdk/Sdk/Sdk.props b/eng/WpfArcadeSdk/Sdk/Sdk.props index d5f6c0629be..6a949842e79 100644 --- a/eng/WpfArcadeSdk/Sdk/Sdk.props +++ b/eng/WpfArcadeSdk/Sdk/Sdk.props @@ -69,6 +69,13 @@ --> $(NoWarn);NU1605 + + $(NoWarn);NU5128;NU5313;NU5131 + - NU5111 + $(NoWarn);NU5111