From 17daa4aed871f41c6d7f751b99602eb10ed8da32 Mon Sep 17 00:00:00 2001 From: Dustin Howett Date: Thu, 6 Aug 2020 12:42:17 -0700 Subject: [PATCH 1/2] Disable MinimalCoreWin when OpenConsoleUniversalApp is false This fixes the build the rest of the way in VS 16.7. Something about the way we were using the Store/Container flags caused some of our projects to end up linking kernel32.lib only (MinimalCoreWin==KernelOnly). The best way to solve it once and for all is to make sure MinimalCoreWin is always set. References 313568d0e5c. --- src/cppwinrt.build.pre.props | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/cppwinrt.build.pre.props b/src/cppwinrt.build.pre.props index cd89880fdd6..e26935a58d1 100644 --- a/src/cppwinrt.build.pre.props +++ b/src/cppwinrt.build.pre.props @@ -22,12 +22,20 @@ at the winmd we build to generate type info. In general, cppwinrt projects all want this. --> - + true true true Windows Store + + + false +