Skip to content

Commit 2c4a757

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature/latest-sonarsource
2 parents fe6d941 + 2bd3ec1 commit 2c4a757

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ and adheres to a project-specific [Versioning](/README.md).
4646

4747
- S6803: Parameters with SupplyParameterFromQuery attribute should be used only in routable components
4848

49+
## [3.2.1] - 2024-11-18
50+
51+
### Fixed
52+
53+
- Do not treat NU1901, NU1902, NU1903 and NU1904 warnings as errors in "Release" configuration
54+
4955
## [3.2.0] - 2024-10-11
5056

5157
### Changed
@@ -197,7 +203,7 @@ and adheres to a project-specific [Versioning](/README.md).
197203

198204
- Changelog
199205

200-
[unreleased]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.2.0...HEAD
206+
[unreleased]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.2.1...HEAD
201207
[3.1.0]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.0.5...v3.1.0
202208
[3.0.5]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.0.4...v3.0.5
203209
[3.0.4]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.0.3...v3.0.4
@@ -206,6 +212,7 @@ and adheres to a project-specific [Versioning](/README.md).
206212
[3.0.1]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.0.0...v3.0.1
207213
[3.0.0]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v2.7.1...v3.0.0
208214
[2.7.1]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v2.7.0...v2.7.1
215+
[3.2.1]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.2.0...v3.2.1
209216
[3.2.0]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.1.2...v3.2.0
210217
[3.1.2]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.1.1...v3.1.2
211218
[3.1.1]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.1.1-alpha.0...v3.1.1

build/Neolution.CodeAnalysis.TestsRuleset.props

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
<PropertyGroup>
55
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
6-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
6+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
7+
<WarningsNotAsErrors>NU1901;NU1902;NU1903;NU1904</WarningsNotAsErrors>
78
</PropertyGroup>
89

910
<PropertyGroup Condition="'$(Configuration)' != 'Debug'">

build/Neolution.CodeAnalysis.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<PropertyGroup>
55
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
7+
<WarningsNotAsErrors>NU1901;NU1902;NU1903;NU1904</WarningsNotAsErrors>
78
</PropertyGroup>
89

910
<PropertyGroup Condition="'$(Configuration)' != 'Debug'">

0 commit comments

Comments
 (0)