Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[main] Update dependencies from dotnet/runtime #41014

Merged
merged 11 commits into from
May 21, 2024
37 changes: 37 additions & 0 deletions src/SourceBuild/patches/wpf/0001-more-system-memory-fixes.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
From f704647788c026d99652b5b3716fab92486841d9 Mon Sep 17 00:00:00 2001
From: Viktor Hofer <[email protected]>
Date: Tue, 21 May 2024 13:50:09 +0200
Subject: [PATCH] Add missing System.Memory references (#9140)

* Add missing System.Memory references

* Update WindowsFormsIntegration.csproj
ViktorHofer marked this conversation as resolved.
Show resolved Hide resolved
---
.../UIAutomation/UIAutomationClient/UIAutomationClient.csproj | 1 +
.../src/WindowsFormsIntegration/WindowsFormsIntegration.csproj | 1 +
2 files changed, 2 insertions(+)

diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/UIAutomationClient.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/UIAutomationClient.csproj
index c4e5ad37a38..e640afd9283 100644
--- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/UIAutomationClient.csproj
+++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/UIAutomationClient.csproj
@@ -113,6 +113,7 @@
<NetCoreReference Include="System.Diagnostics.Process" />
<NetCoreReference Include="System.Diagnostics.StackTrace" />
<NetCoreReference Include="System.Diagnostics.Tools" />
+ <NetCoreReference Include="System.Memory" />
<NetCoreReference Include="System.Resources.ResourceManager" />
<NetCoreReference Include="System.Runtime" />
<NetCoreReference Include="System.Resources.ResourceManager" />
diff --git a/src/Microsoft.DotNet.Wpf/src/WindowsFormsIntegration/WindowsFormsIntegration.csproj b/src/Microsoft.DotNet.Wpf/src/WindowsFormsIntegration/WindowsFormsIntegration.csproj
index 8cd65be871e..f8a6ad01de7 100644
--- a/src/Microsoft.DotNet.Wpf/src/WindowsFormsIntegration/WindowsFormsIntegration.csproj
+++ b/src/Microsoft.DotNet.Wpf/src/WindowsFormsIntegration/WindowsFormsIntegration.csproj
@@ -65,6 +65,7 @@
<NetCoreReference Include="System.Diagnostics.TraceSource" />
<NetCoreReference Include="System.Drawing" />
<NetCoreReference Include="System.Drawing.Primitives" />
+ <NetCoreReference Include="System.Memory" />
<NetCoreReference Include="System.Resources.ResourceManager" />
<NetCoreReference Include="System.Runtime" />
<NetCoreReference Include="System.Runtime.Extensions" />
Loading