-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Fix 19647 #20127
base: main
Are you sure you want to change the base?
Fix 19647 #20127
Conversation
745e674
to
2107055
Compare
293022c
to
073e143
Compare
073e143
to
b4e42da
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise looks good, just had the one question. 👍
(there is also a merge conflict)
<Warning | ||
Text="MauiXamlCValidateOnly set to true prevents trimming" | ||
Code="XC0011" | ||
Condition="'$(MauiXamlCValidateOnly)' == 'True'" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be:
Condition="'$(MauiXamlCValidateOnly)' == 'True'" /> | |
Condition="'$(_MauiXamlCValidateOnly)' == 'True'" /> |
Or is this trying to warn on Release
mode only? So then if they set $(MauiXamlCValidateOnly)
that would be the only way to get the warning?
2aa2516
to
02372bd
Compare
6278b69
to
2ef2102
Compare
2ef2102
to
9ac9578
Compare
Is this going to be merged in SR3 ? |
9ac9578
to
d65875e
Compare
d65875e
to
de7a4ac
Compare
de7a4ac
to
1589ee7
Compare
cbfd037
to
ce71128
Compare
Description of Change
Warn on XAML and Bindings that can't be compiled
Compile Bindings used as properties (Setters, Triggers, MultiBindings)
Issues Fixed