From 9ec724b706070ba38a2cb2ef3e15da60244f7215 Mon Sep 17 00:00:00 2001 From: Sergio Pedri Date: Wed, 29 Jul 2026 11:32:43 -0700 Subject: [PATCH] Hide WinRT.Host runtime assets in Solution Explorer The WinRT.Host.dll, WinRT.Host.dll.mui and WinRT.Host.Shim.dll items are build/runtime assets copied to the output directory, not files users are meant to interact with. Mark them with Visible=false so they no longer show up as project items in Solution Explorer, while still being copied to the output directory as before. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 0b96f4f1-0434-43cd-b44a-dc4a132fb863 --- nuget/Microsoft.Windows.CsWinRT.Authoring.targets | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nuget/Microsoft.Windows.CsWinRT.Authoring.targets b/nuget/Microsoft.Windows.CsWinRT.Authoring.targets index ae7f61fb3..078aaa5c8 100644 --- a/nuget/Microsoft.Windows.CsWinRT.Authoring.targets +++ b/nuget/Microsoft.Windows.CsWinRT.Authoring.targets @@ -64,24 +64,29 @@ Copyright (C) Microsoft Corporation. All rights reserved. WinRT.Host.Shim.dll PreserveNewest + false WinRT.Host.dll PreserveNewest + false WinRT.Host.dll.mui PreserveNewest + false