-
Notifications
You must be signed in to change notification settings - Fork 0
Fix XAML compiler failure in CI build #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Removed x86 and ARM64 platforms from build matrix.
Co-authored-by: miskibin <77834536+miskibin@users.noreply.github.com>
…d-masking Fix window transparency, mask encrypted values, and improve UX
Co-authored-by: miskibin <77834536+miskibin@users.noreply.github.com>
|
Run if (Test-Path "GitHubActionsWorkflow.pfx") { I believe issue was introduced in this commit |
Co-authored-by: miskibin <77834536+miskibin@users.noreply.github.com>
The build failure persisted after removing the empty MainPage files. The root cause is the |
|
20s Determining projects to restore... |
Co-authored-by: miskibin <77834536+miskibin@users.noreply.github.com>
fbaa59f to
7da5e60
Compare
XAML compiler fails with exit code 1 during CI build due to configuration issues in the project file.
Changes
Views/MainPage.xamlandViews/MainPage.xaml.csfiles<Page Remove="Views\MainPage.xaml" />ItemGroup from.csproj<None Update="Views\MainPage.xaml">MSBuild:Compile generator configuration<PublishSingleFile>fromtruetofalseto resolve XAML compiler errors<WindowsAppSDKSelfContained>astruefor proper Windows App SDK integrationThe root cause was the
PublishSingleFile=truesetting which is incompatible with Windows App SDK's XAML compiler. The setting caused the XAML compilation to fail when building in CI. No code references to MainPage exist in the codebase.Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.