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
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: dotnet restore
working-directory: ./src
- name: Build
run: dotnet build --no-restore
run: dotnet build --no-restore -m:1
working-directory: ./src
- name: Test
run: dotnet test --no-build --verbosity normal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>Core .NET analyzers for detecting the most common coding issues</Description>
<PackageReleaseNotes>
0.9.0
* Add EPC38: TaskEnumerableReEnumerationAnalyzer (disabled by default).
* Add EPC39: QuadraticEnumerationAnalyzer (disabled by default).
* Add EPC40: PrivateMethodMultipleEnumerationAnalyzer (disabled by default).
* Add EPC41: FormatMethodArgumentsAnalyzer to validate arguments passed to string.Format-like methods.
* Fix EPC30: do not warn on recursive calls made from nested lambdas, anonymous methods, or local functions (#318).
* Fix EPC20: do not warn when the type defines a user-defined implicit conversion to string (#317).
0.8.2
* Reduce severity for the analyzers.
0.8.1
Expand Down