We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A warning is generated when there are properties in different assemblies.
Create two class libraries ClassLibraryA and ClassLibraryB.
In ClassLibraryA add:
[DependencyProperty<int>("Property1")] public partial class Control1 : Control { }
In ClassLibraryB add:
[DependencyProperty<int>("Property2")] public partial class Control2 : Control { }
In ClassLibraryB add a reference to ClassLibraryA.
Warnings are generated when compiling ClassLibraryB.
No warning should be generated.
No response
1.3.0
Visual Studio 2022
In a WPF class project.
The text was updated successfully, but these errors were encountered:
a9cf0cf
No branches or pull requests
Describe the bug
A warning is generated when there are properties in different assemblies.
Steps to reproduce the bug
Create two class libraries ClassLibraryA and ClassLibraryB.
In ClassLibraryA add:
In ClassLibraryB add:
In ClassLibraryB add a reference to ClassLibraryA.
Warnings are generated when compiling ClassLibraryB.
Expected behavior
No warning should be generated.
Screenshots
No response
NuGet package version
1.3.0
IDE
Visual Studio 2022
Additional context
In a WPF class project.
The text was updated successfully, but these errors were encountered: