Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions rules/Proj0015.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ human readable. When ordering the references based on
other criteria, consider grouping them in separate
`<ItemGroup>`s.

The rule assumes data sorted based on the `@Include` attribute applying
`StringComparison.OrdinalIgnoreCase`.

## Non-compliant
``` xml
<Project Sdk="Microsoft.NET.Sdk">
Expand Down
3 changes: 3 additions & 0 deletions rules/Proj0016.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ human readable. When ordering the references based on
other criteria, consider grouping them in separate
`<ItemGroup>`s.

The rule assumes data sorted based on the `@Include` attribute applying
`StringComparison.OrdinalIgnoreCase`.

## Non-compliant
``` xml
<Project Sdk="Microsoft.NET.Sdk">
Expand Down
3 changes: 3 additions & 0 deletions rules/Proj0018.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ ancestor: MSBuild
`<ItemGroup>`. When ordering the imports based on other criteria, consider
grouping them in separate `<ItemGroup>`s.

The rule assumes data sorted based on the `@Include` attribute applying
`StringComparison.OrdinalIgnoreCase`.

## Non-compliant
``` xml
<Project Sdk="Microsoft.NET.Sdk">
Expand Down
3 changes: 3 additions & 0 deletions rules/Proj0019.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ ancestor: MSBuild
in order to make it more human readable. When ordering the references based on
other criteria, consider grouping them in separate `<ItemGroup>`s.

The rule assumes data sorted based on the `@Include` attribute applying
`StringComparison.OrdinalIgnoreCase`.

## Non-compliant
``` xml
<Project Sdk="Microsoft.NET.Sdk">
Expand Down
3 changes: 2 additions & 1 deletion rules/Proj2002.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ ancestor: Rules

# Proj2002: Sort resource file values alphabetically
To improve readability, and reduce the number of merge conflicts, the `<data>`
elements should be sorted based on the `@name` attribute.
elements should be sorted. The rule assumes data sorted based on the `@name`
attribute applying `StringComparison.OrdinalIgnoreCase`.

## Non-compliant
``` xml
Expand Down
Loading