Skip to content

Commit

Permalink
Bump to version 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xaviersolau committed Oct 6, 2024
1 parent c6529cd commit 64a6a59
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
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.2.0
Install-Package SoloX.CodeQuality.Prod -version 2.2.1
or
Install-Package SoloX.CodeQuality.Test -version 2.2.0
Install-Package SoloX.CodeQuality.Test -version 2.2.1
```

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

**Install editing your project file (csproj):**
```xml
<PackageReference Include="SoloX.CodeQuality.Prod" Version="2.2.0">
<PackageReference Include="SoloX.CodeQuality.Prod" Version="2.2.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
or
<PackageReference Include="SoloX.CodeQuality.Test" Version="2.2.0">
<PackageReference Include="SoloX.CodeQuality.Test" Version="2.2.1">
<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.2.0
Install-Package SoloX.CodeQuality.Playwright -version 2.2.1
```

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

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

* * *
Expand Down Expand Up @@ -416,29 +416,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.2.0
Install-Package SoloX.CodeQuality.Test.Helpers -version 2.2.1

Install-Package SoloX.CodeQuality.Test.Helpers.XUnit -version 2.2.0
Install-Package SoloX.CodeQuality.Test.Helpers.XUnit -version 2.2.1

Install-Package SoloX.CodeQuality.Test.Helpers.NUnit -version 2.2.0
Install-Package SoloX.CodeQuality.Test.Helpers.NUnit -version 2.2.1
```

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

dotnet add package SoloX.CodeQuality.Test.Helpers.XUnit --version 2.2.0
dotnet add package SoloX.CodeQuality.Test.Helpers.XUnit --version 2.2.1

dotnet add package SoloX.CodeQuality.Test.Helpers.NUnit --version 2.2.0
dotnet add package SoloX.CodeQuality.Test.Helpers.NUnit --version 2.2.1
```

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

<PackageReference Include="SoloX.CodeQuality.Test.Helpers.XUnit" Version="2.2.0" />
<PackageReference Include="SoloX.CodeQuality.Test.Helpers.XUnit" Version="2.2.1" />

<PackageReference Include="SoloX.CodeQuality.Test.Helpers.NUnit" Version="2.2.0" />
<PackageReference Include="SoloX.CodeQuality.Test.Helpers.NUnit" Version="2.2.1" />
```

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

<PropertyGroup>
<Version>2.2.0</Version>
<Version>2.2.1</Version>
<Authors>Xavier Solau</Authors>
<Copyright>Copyright © 2021 Xavier Solau</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.5.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
<PackageReference Include="SoloX.CodeQuality.Playwright" Version="2.2.0" />
<PackageReference Include="SoloX.CodeQuality.Playwright" Version="2.2.1" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 64a6a59

Please sign in to comment.