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
I'd like to implement a diagnostic analyzer that spans across Projects in a Solution. Is it possible to get this information within a diagnostic analyzer?
Analyzers are currently project-centric; they can't "see" anything outside of the project currently being built, including other projects.
That being said, there may be another approach that can achieve what you want right now. Projects now support additional files--text files that aren't source code but are passed to the compilers and available to analyzers. You could have the .NET SDK projects share an additional file documenting the set of expected classes and members, and an analyzer that complains if they don't.
I'd like to implement a diagnostic analyzer that spans across
Project
s in aSolution
. Is it possible to get this information within a diagnostic analyzer?For reference, this is part of implementing the following:
openstacknetsdk/OpenStackNetAnalyzers#16
The text was updated successfully, but these errors were encountered: