Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to version 2.3.0 #30

Merged
merged 1 commit into from
Nov 23, 2024
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
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.0-beta.1
Install-Package SoloX.CodeQuality.Prod -version 2.3.0
or
Install-Package SoloX.CodeQuality.Test -version 2.3.0-beta.1
Install-Package SoloX.CodeQuality.Test -version 2.3.0
```

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

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

**Install using the .Net CLI:**
```bash
dotnet add package SoloX.CodeQuality.Playwright --version 2.3.0-beta.1
dotnet add package SoloX.CodeQuality.Playwright --version 2.3.0
```

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

* * *
Expand Down Expand Up @@ -420,29 +420,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.0-beta.1
Install-Package SoloX.CodeQuality.Test.Helpers -version 2.3.0

Install-Package SoloX.CodeQuality.Test.Helpers.XUnit -version 2.3.0-beta.1
Install-Package SoloX.CodeQuality.Test.Helpers.XUnit -version 2.3.0

Install-Package SoloX.CodeQuality.Test.Helpers.NUnit -version 2.3.0-beta.1
Install-Package SoloX.CodeQuality.Test.Helpers.NUnit -version 2.3.0
```

**Install using the .Net CLI:**
```bash
dotnet add package SoloX.CodeQuality.Test.Helpers --version 2.3.0-beta.1
dotnet add package SoloX.CodeQuality.Test.Helpers --version 2.3.0

dotnet add package SoloX.CodeQuality.Test.Helpers.XUnit --version 2.3.0-beta.1
dotnet add package SoloX.CodeQuality.Test.Helpers.XUnit --version 2.3.0

dotnet add package SoloX.CodeQuality.Test.Helpers.NUnit --version 2.3.0-beta.1
dotnet add package SoloX.CodeQuality.Test.Helpers.NUnit --version 2.3.0
```

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

<PackageReference Include="SoloX.CodeQuality.Test.Helpers.XUnit" Version="2.3.0-beta.1" />
<PackageReference Include="SoloX.CodeQuality.Test.Helpers.XUnit" Version="2.3.0" />

<PackageReference Include="SoloX.CodeQuality.Test.Helpers.NUnit" Version="2.3.0-beta.1" />
<PackageReference Include="SoloX.CodeQuality.Test.Helpers.NUnit" Version="2.3.0" />
```

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

<PropertyGroup>
<Version>2.3.0-beta.1</Version>
<Version>2.3.0</Version>
<Authors>Xavier Solau</Authors>
<Copyright>Copyright © 2021 Xavier Solau</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand All @@ -14,6 +14,7 @@
<CodeQualityHeaderLicense>$(PackageLicenseExpression)</CodeQualityHeaderLicense>
<CodeQualityHeaderLicenseFile>LICENSE</CodeQualityHeaderLicenseFile>

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

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

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.2" />
<PackageReference Include="Microsoft.Playwright" Version="1.48.0" />
<PackageReference Include="Microsoft.Playwright" Version="1.49.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.11" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="[8.0.0,9.0.0)" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="[9.0.0,)" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<PackageTags>code quality, analysis, coding style</PackageTags>
<PackageReleaseNotes>- Setup coding style and analysis.</PackageReleaseNotes>
<AssemblyVersion>2.0.0.0</AssemblyVersion>

<Description>Setup coding style and analysis for production projects (using NetAlalyzers and CodeStyle).</Description>
<IncludeBuildOutput>false</IncludeBuildOutput>
<DevelopmentDependency>true</DevelopmentDependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

<PackageTags>code quality, test, integration</PackageTags>
<PackageReleaseNotes>- Add TestLogger.</PackageReleaseNotes>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<Description>Provides some helpers for integration test use with XUnit.</Description>
<IncludeBuildOutput>true</IncludeBuildOutput>

Expand All @@ -30,15 +29,14 @@
<PackageReference Include="NUnit" Version="4.2.2" />
</ItemGroup>


<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="[8.0.0,9.0.0)" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="[8.0.0,9.0.0)" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="[9.0.0,)" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="[9.0.0,)" />
</ItemGroup>

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

<PackageTags>code quality, test, integration</PackageTags>
<PackageReleaseNotes>- Add TestLogger.</PackageReleaseNotes>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<Description>Provides some helpers for integration test use with XUnit.</Description>
<IncludeBuildOutput>true</IncludeBuildOutput>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
- Reworked HttpClient mock API.
- Removed XUnit dependency.
</PackageReleaseNotes>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<Description>Provides some helpers for integration test use.</Description>
<IncludeBuildOutput>true</IncludeBuildOutput>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

<PackageTags>code quality, analysis, coding style</PackageTags>
<PackageReleaseNotes>- Setup coding style and analysis.</PackageReleaseNotes>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<Description>Setup coding style and analysis for test projects (using NetAlalyzers and CodeStyle).</Description>
<IncludeBuildOutput>false</IncludeBuildOutput>
<DevelopmentDependency>true</DevelopmentDependency>
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.0-beta.1" />
<PackageReference Include="SoloX.CodeQuality.Playwright" Version="2.3.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading