You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently AppCenter does not support WinUI 3.
I managed to integrate AppCenter with a WinUI app, but not all AppCenter features work.
The UWP API, which is the one I managed to integrate with a WinUI (Win32) app, needs System.Windows.Forms. I worked-around this by creating an empty project and referencing this project by the WinUI app.
The empty project has the following in the csproj in order for it to load Winforms:
Currently AppCenter does not support WinUI 3.
I managed to integrate AppCenter with a WinUI app, but not all AppCenter features work.
The empty project has the following in the csproj in order for it to load Winforms:
<PropertyGroup> <OutputType>Library</OutputType> <TargetFramework>net5.0-windows</TargetFramework> <UseWindowsForms>true</UseWindowsForms> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> </PropertyGroup>
The text was updated successfully, but these errors were encountered: