-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: symbol naming enforcement across all csprojects (#3053)
* chore: symbol naming enforcement across all csprojects * Commented editorconfig * fix: Minor updates to.props file Propagate warningAsErrors from inputs Enforce codestyle on build always * fix(dui): Do not warn about DUI2 in CI * feat: Bump min sdk to >8.0 * bump: Use 8.0 on ci too * Revert "bump: Use 8.0 on ci too" This reverts commit 55e8784. * Revert "feat: Bump min sdk to >8.0" This reverts commit 9ae9da5. --------- Co-authored-by: Alan Rynne <[email protected]>
- Loading branch information
Showing
6 changed files
with
143 additions
and
90 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
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,10 @@ | ||
|
||
[*.{cs,vb}] | ||
|
||
# Name properties with camelCase | ||
dotnet_naming_rule.properties_should_be_camel_case.severity = none | ||
dotnet_naming_rule.properties_should_be_camel_case.symbols = properties | ||
dotnet_naming_rule.properties_should_be_camel_case.style = property_style | ||
|
||
dotnet_naming_symbols.properties.applicable_kinds = property | ||
dotnet_naming_style.property_style.capitalization = pascal_case |
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
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,10 @@ | ||
|
||
[*.{cs,vb}] | ||
|
||
# Name properties with camelCase | ||
dotnet_naming_rule.properties_should_be_camel_case.severity = none | ||
dotnet_naming_rule.properties_should_be_camel_case.symbols = properties | ||
dotnet_naming_rule.properties_should_be_camel_case.style = property_style | ||
|
||
dotnet_naming_symbols.properties.applicable_kinds = property | ||
dotnet_naming_style.property_style.capitalization = camel_case |