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/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 9.0.100
dotnet-version: 9.0.101
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 9.0.100
dotnet-version: 9.0.101
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,26 +52,26 @@ You can checkout this Github repository or you can use the NuGet package:

**Install using the command line from the Package Manager:**
```bash
Install-Package SoloX.CodeQuality.Prod -version 2.3.1
Install-Package SoloX.CodeQuality.Prod -version 2.3.2
or
Install-Package SoloX.CodeQuality.Test -version 2.3.1
Install-Package SoloX.CodeQuality.Test -version 2.3.2
```

**Install using the .Net CLI:**
```bash
dotnet add package SoloX.CodeQuality.Prod --version 2.3.1
dotnet add package SoloX.CodeQuality.Prod --version 2.3.2
or
dotnet add package SoloX.CodeQuality.Test --version 2.3.1
dotnet add package SoloX.CodeQuality.Test --version 2.3.2
```

**Install editing your project file (csproj):**
```xml
<PackageReference Include="SoloX.CodeQuality.Prod" Version="2.3.1">
<PackageReference Include="SoloX.CodeQuality.Prod" Version="2.3.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
or
<PackageReference Include="SoloX.CodeQuality.Test" Version="2.3.1">
<PackageReference Include="SoloX.CodeQuality.Test" Version="2.3.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down Expand Up @@ -218,17 +218,17 @@ You can checkout this Github repository or use the NuGet package:

**Install using the command line from the Package Manager:**
```bash
Install-Package SoloX.CodeQuality.Playwright -version 2.3.1
Install-Package SoloX.CodeQuality.Playwright -version 2.3.2
```

**Install using the .Net CLI:**
```bash
dotnet add package SoloX.CodeQuality.Playwright --version 2.3.1
dotnet add package SoloX.CodeQuality.Playwright --version 2.3.2
```

**Install editing your project file (csproj):**
```xml
<PackageReference Include="SoloX.CodeQuality.Playwright" Version="2.3.1" />
<PackageReference Include="SoloX.CodeQuality.Playwright" Version="2.3.2" />
```

* * *
Expand Down Expand Up @@ -424,29 +424,29 @@ You can checkout this Github repository or you can use the NuGet package:

**Install using the command line from the Package Manager:**
```bash
Install-Package SoloX.CodeQuality.Test.Helpers -version 2.3.1
Install-Package SoloX.CodeQuality.Test.Helpers -version 2.3.2

Install-Package SoloX.CodeQuality.Test.Helpers.XUnit -version 2.3.1
Install-Package SoloX.CodeQuality.Test.Helpers.XUnit -version 2.3.2

Install-Package SoloX.CodeQuality.Test.Helpers.NUnit -version 2.3.1
Install-Package SoloX.CodeQuality.Test.Helpers.NUnit -version 2.3.2
```

**Install using the .Net CLI:**
```bash
dotnet add package SoloX.CodeQuality.Test.Helpers --version 2.3.1
dotnet add package SoloX.CodeQuality.Test.Helpers --version 2.3.2

dotnet add package SoloX.CodeQuality.Test.Helpers.XUnit --version 2.3.1
dotnet add package SoloX.CodeQuality.Test.Helpers.XUnit --version 2.3.2

dotnet add package SoloX.CodeQuality.Test.Helpers.NUnit --version 2.3.1
dotnet add package SoloX.CodeQuality.Test.Helpers.NUnit --version 2.3.2
```

**Install editing your project file (csproj):**
```xml
<PackageReference Include="SoloX.CodeQuality.Test.Helpers" Version="2.3.1" />
<PackageReference Include="SoloX.CodeQuality.Test.Helpers" Version="2.3.2" />

<PackageReference Include="SoloX.CodeQuality.Test.Helpers.XUnit" Version="2.3.1" />
<PackageReference Include="SoloX.CodeQuality.Test.Helpers.XUnit" Version="2.3.2" />

<PackageReference Include="SoloX.CodeQuality.Test.Helpers.NUnit" Version="2.3.1" />
<PackageReference Include="SoloX.CodeQuality.Test.Helpers.NUnit" Version="2.3.2" />
```

* * *
Expand Down
4 changes: 2 additions & 2 deletions src/SharedProperties.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<Version>2.3.1</Version>
<Version>2.3.2</Version>
<Authors>Xavier Solau</Authors>
<Copyright>Copyright © 2021 Xavier Solau</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand All @@ -14,7 +14,7 @@
<CodeQualityHeaderLicense>$(PackageLicenseExpression)</CodeQualityHeaderLicense>
<CodeQualityHeaderLicenseFile>LICENSE</CodeQualityHeaderLicenseFile>

<AssemblyVersion>2.3.0.0</AssemblyVersion>
<AssemblyVersion>2.3.2.0</AssemblyVersion>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<CodeQualityUpdateGitIgnore>false</CodeQualityUpdateGitIgnore>

<NoWarn>$(NoWarn),CA1014,CA1017,CS1591,CA1062,CA1848,CA2254</NoWarn>
<NoWarn>$(NoWarn),CA1014,CA1017,CS1591,CA1062,CA1848,CA2254,CA1515</NoWarn>

</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="SoloX.CodeQuality.Playwright" Version="2.3.1" />
<PackageReference Include="SoloX.CodeQuality.Playwright" Version="2.3.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading