-
We’re building our packaged Win32 app using Qt and would like to use the Windows App SDK. Is this a supported scenario or has anyone managed to use the Windows App SDK / WinUI outside of a Visual Studio project? Specifically, we’d like to take advantage of the AppWindow API to make our app window look more native/modern. I downloaded the Microsoft.WindowsAppSDK Nuget package, but it seems to be missing most of the headers for WinUI or the AppWindow API. I read that these are provided as sub-projects to the Nuget package – is there any way to download these manually? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 25 replies
-
We've focused primarily on .NET and msbuild up to this point, but have been collecting feedback related to supporting other build environments in the future. Are you developing in C++ then ? Which build system are you using? Thanks, Ben |
Beta Was this translation helpful? Give feedback.
-
Solution for unpackaged appNotwithstanding the issue with
|
Beta Was this translation helpful? Give feedback.
-
Deployment issues in packaged appWe actually want to use this in a packaged app, but we’re running into some issues with the deployment following this documentation. Here is what we did so far:
I am guessing that we are again missing some other step performed by Visual Studio. @DrusTheAxe any idea what we could be missing here? |
Beta Was this translation helpful? Give feedback.
Solution for unpackaged app
Notwithstanding the issue with
GetWindowIdFromWindow()
discussed in the other thread, we managed to integrate the Windows App SDK in an unpackaged app without using Visual Studio as follows:Microsoft.WindowsAppSDK.1.0.0/include
andinclude-gen
to header search paths.Microsoft.Wi…