Replies: 1 comment 1 reply
-
the work around i found is to remove |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
before adding the winui3 c# class library, i was able to produce the msix using the cli:
dotnet msbuild <mainapp>.csproj /p:Configuration=Release /p:AppxPackageDir=.\dist\ /p:GenerateAppxPackageOnBuild=true /p:AppxBundlePlatforms=x64 /p:UapAppxPackageBuildMode=SideloadOnly /p:AppxBundle=Never /p:PackageCertificateKeyFile=<mainapp>_TemporaryKey.pfx /p:AppxPackageSigningEnabled=true
i added a winui3 c# class library project to my solution, than i added a reference to ma winui3 c# class library project from the main app, and now i'm not able to build the project with cli:
the error from the command:
error : You must include a valid app package manifest file named AppxManifest.xml in the source [library.csproj]
may someone help me out to identify what i need to do in order to be able to properly build the misx with the library?
mainapp csproj:
library csproj:
Beta Was this translation helpful? Give feedback.
All reactions