Skip to content

Commit 4dedced

Browse files
committed
remove CA1515 from Test Code Quality & Bump to version 2.3.1
1 parent b42bd5f commit 4dedced

File tree

6 files changed

+24
-24
lines changed

6 files changed

+24
-24
lines changed

.github/workflows/build-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup .NET Core
1515
uses: actions/setup-dotnet@v1
1616
with:
17-
dotnet-version: 9.0.100
17+
dotnet-version: 9.0.101
1818
- name: Install dependencies
1919
run: dotnet restore
2020
- name: Build

.github/workflows/build-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup .NET Core
1515
uses: actions/setup-dotnet@v1
1616
with:
17-
dotnet-version: 9.0.100
17+
dotnet-version: 9.0.101
1818
- name: Install dependencies
1919
run: dotnet restore
2020
- name: Build

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -52,26 +52,26 @@ You can checkout this Github repository or you can use the NuGet package:
5252

5353
**Install using the command line from the Package Manager:**
5454
```bash
55-
Install-Package SoloX.CodeQuality.Prod -version 2.3.0
55+
Install-Package SoloX.CodeQuality.Prod -version 2.3.1
5656
or
57-
Install-Package SoloX.CodeQuality.Test -version 2.3.0
57+
Install-Package SoloX.CodeQuality.Test -version 2.3.1
5858
```
5959

6060
**Install using the .Net CLI:**
6161
```bash
62-
dotnet add package SoloX.CodeQuality.Prod --version 2.3.0
62+
dotnet add package SoloX.CodeQuality.Prod --version 2.3.1
6363
or
64-
dotnet add package SoloX.CodeQuality.Test --version 2.3.0
64+
dotnet add package SoloX.CodeQuality.Test --version 2.3.1
6565
```
6666

6767
**Install editing your project file (csproj):**
6868
```xml
69-
<PackageReference Include="SoloX.CodeQuality.Prod" Version="2.3.0">
69+
<PackageReference Include="SoloX.CodeQuality.Prod" Version="2.3.1">
7070
<PrivateAssets>all</PrivateAssets>
7171
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
7272
</PackageReference>
7373
or
74-
<PackageReference Include="SoloX.CodeQuality.Test" Version="2.3.0">
74+
<PackageReference Include="SoloX.CodeQuality.Test" Version="2.3.1">
7575
<PrivateAssets>all</PrivateAssets>
7676
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
7777
</PackageReference>
@@ -218,17 +218,17 @@ You can checkout this Github repository or use the NuGet package:
218218

219219
**Install using the command line from the Package Manager:**
220220
```bash
221-
Install-Package SoloX.CodeQuality.Playwright -version 2.3.0
221+
Install-Package SoloX.CodeQuality.Playwright -version 2.3.1
222222
```
223223

224224
**Install using the .Net CLI:**
225225
```bash
226-
dotnet add package SoloX.CodeQuality.Playwright --version 2.3.0
226+
dotnet add package SoloX.CodeQuality.Playwright --version 2.3.1
227227
```
228228

229229
**Install editing your project file (csproj):**
230230
```xml
231-
<PackageReference Include="SoloX.CodeQuality.Playwright" Version="2.3.0" />
231+
<PackageReference Include="SoloX.CodeQuality.Playwright" Version="2.3.1" />
232232
```
233233

234234
* * *
@@ -420,29 +420,29 @@ You can checkout this Github repository or you can use the NuGet package:
420420

421421
**Install using the command line from the Package Manager:**
422422
```bash
423-
Install-Package SoloX.CodeQuality.Test.Helpers -version 2.3.0
423+
Install-Package SoloX.CodeQuality.Test.Helpers -version 2.3.1
424424

425-
Install-Package SoloX.CodeQuality.Test.Helpers.XUnit -version 2.3.0
425+
Install-Package SoloX.CodeQuality.Test.Helpers.XUnit -version 2.3.1
426426

427-
Install-Package SoloX.CodeQuality.Test.Helpers.NUnit -version 2.3.0
427+
Install-Package SoloX.CodeQuality.Test.Helpers.NUnit -version 2.3.1
428428
```
429429

430430
**Install using the .Net CLI:**
431431
```bash
432-
dotnet add package SoloX.CodeQuality.Test.Helpers --version 2.3.0
432+
dotnet add package SoloX.CodeQuality.Test.Helpers --version 2.3.1
433433

434-
dotnet add package SoloX.CodeQuality.Test.Helpers.XUnit --version 2.3.0
434+
dotnet add package SoloX.CodeQuality.Test.Helpers.XUnit --version 2.3.1
435435

436-
dotnet add package SoloX.CodeQuality.Test.Helpers.NUnit --version 2.3.0
436+
dotnet add package SoloX.CodeQuality.Test.Helpers.NUnit --version 2.3.1
437437
```
438438

439439
**Install editing your project file (csproj):**
440440
```xml
441-
<PackageReference Include="SoloX.CodeQuality.Test.Helpers" Version="2.3.0" />
441+
<PackageReference Include="SoloX.CodeQuality.Test.Helpers" Version="2.3.1" />
442442

443-
<PackageReference Include="SoloX.CodeQuality.Test.Helpers.XUnit" Version="2.3.0" />
443+
<PackageReference Include="SoloX.CodeQuality.Test.Helpers.XUnit" Version="2.3.1" />
444444

445-
<PackageReference Include="SoloX.CodeQuality.Test.Helpers.NUnit" Version="2.3.0" />
445+
<PackageReference Include="SoloX.CodeQuality.Test.Helpers.NUnit" Version="2.3.1" />
446446
```
447447

448448
* * *

src/SharedProperties.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<Version>2.3.0</Version>
4+
<Version>2.3.1</Version>
55
<Authors>Xavier Solau</Authors>
66
<Copyright>Copyright © 2021 Xavier Solau</Copyright>
77
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -14,7 +14,7 @@
1414
<CodeQualityHeaderLicense>$(PackageLicenseExpression)</CodeQualityHeaderLicense>
1515
<CodeQualityHeaderLicenseFile>LICENSE</CodeQualityHeaderLicenseFile>
1616

17-
<AssemblyVersion>2.3.0.0</AssemblyVersion>
17+
<AssemblyVersion>2.3.1.0</AssemblyVersion>
1818
</PropertyGroup>
1919

2020
</Project>

src/libs/SoloX.CodeQuality.Test/build/SoloX.CodeQuality.Test.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<CodeQualityUpdateGitIgnore>false</CodeQualityUpdateGitIgnore>
2727

28-
<NoWarn>$(NoWarn),CA1014,CA1017,CS1591,CA1062,CA1848,CA2254</NoWarn>
28+
<NoWarn>$(NoWarn),CA1014,CA1017,CS1591,CA1062,CA1848,CA2254,CA1515</NoWarn>
2929

3030
</PropertyGroup>
3131

src/tests/SoloX.CodeQuality.Playwright.E2ETest/Resources/PackageNugetTestProject/PackageNugetTestProject/PackageNugetTestProject.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3131
<PrivateAssets>all</PrivateAssets>
3232
</PackageReference>
33-
<PackageReference Include="SoloX.CodeQuality.Playwright" Version="2.3.0" />
33+
<PackageReference Include="SoloX.CodeQuality.Playwright" Version="2.3.1" />
3434
</ItemGroup>
3535

3636
<ItemGroup>

0 commit comments

Comments
 (0)