-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* improved `nameof()` handling * Improve analyzer to match
- Loading branch information
1 parent
d54c645
commit 0405b21
Showing
11 changed files
with
872 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/Immediate.Validations.Generators/DisplayNameFormatters.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Microsoft.CodeAnalysis; | ||
|
||
namespace Immediate.Validations.Generators; | ||
|
||
internal static class DisplayNameFormatters | ||
{ | ||
public static readonly SymbolDisplayFormat FullyQualifiedForMembers = | ||
SymbolDisplayFormat.FullyQualifiedFormat | ||
.WithMemberOptions( | ||
SymbolDisplayMemberOptions.IncludeContainingType | ||
| SymbolDisplayMemberOptions.IncludeParameters | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.