From 59760b6667de66b8981d5d0f61692244d16389f5 Mon Sep 17 00:00:00 2001 From: Mike Griese Date: Tue, 25 Jan 2022 12:45:33 -0600 Subject: [PATCH] Pin the `NETCore.App.Host` version to appease nuget (#12248) This gets rid of warnings like ``` NU1102: Unable to find package Microsoft.NETCore.App.Host.win-x64 with version (= 3.1.21) - Found 1 version(s) in TerminalDependencies [ Nearest version: 3.1.18 ] ``` Technically, there's a `NETCore.App.Host.3.1.21` that's out now. We _could_ migrate to that, but then we'd have to make sure to manually re-upload that nuget package to our nuget feed, and then we'd still get this warning the next time that package is updated. Theoretically, there's a 6.x version too, but considering this is a debugging tool, we don't care all that much. * [x] I work here * [x] Discussed this with Dustin * [x] Gets rid of a SUPER TRIVIAL warning. --- .../WpfTerminalTestNetCore/WpfTerminalTestNetCore.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cascadia/WpfTerminalTestNetCore/WpfTerminalTestNetCore.csproj b/src/cascadia/WpfTerminalTestNetCore/WpfTerminalTestNetCore.csproj index b14f6bb3a50..6725dfa25d8 100644 --- a/src/cascadia/WpfTerminalTestNetCore/WpfTerminalTestNetCore.csproj +++ b/src/cascadia/WpfTerminalTestNetCore/WpfTerminalTestNetCore.csproj @@ -3,6 +3,7 @@ WinExe netcoreapp3.1 + 3.1.18 true AnyCPU;x64;x86