Skip to content

Commit 3c48f59

Browse files
chore(deps): update dependency roslynator.dotnet.cli to v0.8.9 (#44)
* chore(deps): update dependency roslynator.dotnet.cli to v0.8.9 * chore(deps): upgrade repo --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Adrien Hupond <[email protected]>
1 parent 544ecc3 commit 3c48f59

File tree

4 files changed

+89
-89
lines changed

4 files changed

+89
-89
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]
1010
},
1111
"roslynator.dotnet.cli": {
12-
"version": "0.8.8",
12+
"version": "0.8.9",
1313
"commands": [
1414
"roslynator"
1515
]
Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
<IsPackable>true</IsPackable>
8-
<PackageId>ArwynFr.IntegrationTesting</PackageId>
9-
<Authors>ArwynFr</Authors>
10-
<Description>This library provides utility classes for writing integration tests in dotnet using XUnit and WebApplicationFactory.</Description>
11-
<Copyright>Copyright (c) ArwynFr 2024</Copyright>
12-
<PackageReadmeFile>README.md</PackageReadmeFile>
13-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
14-
<SonarQubeTestProject>false</SonarQubeTestProject>
15-
<RepositoryUrl>https://github.com/ArwynFr/dotnet-integration-testing</RepositoryUrl>
16-
<PackageTags>xunit;integration-testing;WebApplicationFactory</PackageTags>
17-
<PackageIcon>logo.png</PackageIcon>
18-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
19-
</PropertyGroup>
20-
21-
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
22-
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
23-
</PropertyGroup>
24-
25-
<ItemGroup>
26-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.5" />
27-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.5" />
28-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
29-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
30-
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
31-
<PackageReference Include="OpenTelemetry.Exporter.InMemory" Version="1.8.1" />
32-
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.8.1" />
33-
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.8.1" />
34-
<PackageReference Include="XUnit" Version="2.8.0" />
35-
</ItemGroup>
36-
37-
<ItemGroup>
38-
<None Include="../../.github/README.md" Pack="true" PackagePath="/" />
39-
<None Include="../logo.png" Pack="true" PackagePath="/" />
40-
</ItemGroup>
41-
42-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<IsPackable>true</IsPackable>
8+
<PackageId>ArwynFr.IntegrationTesting</PackageId>
9+
<Authors>ArwynFr</Authors>
10+
<Description>This library provides utility classes for writing integration tests in dotnet using XUnit and WebApplicationFactory.</Description>
11+
<Copyright>Copyright (c) ArwynFr 2024</Copyright>
12+
<PackageReadmeFile>README.md</PackageReadmeFile>
13+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
14+
<SonarQubeTestProject>false</SonarQubeTestProject>
15+
<RepositoryUrl>https://github.com/ArwynFr/dotnet-integration-testing</RepositoryUrl>
16+
<PackageTags>xunit;integration-testing;WebApplicationFactory</PackageTags>
17+
<PackageIcon>logo.png</PackageIcon>
18+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
19+
</PropertyGroup>
20+
21+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
22+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
23+
</PropertyGroup>
24+
25+
<ItemGroup>
26+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.6" />
27+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.6" />
28+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
29+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
30+
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
31+
<PackageReference Include="OpenTelemetry.Exporter.InMemory" Version="1.8.1" />
32+
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.8.1" />
33+
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.8.1" />
34+
<PackageReference Include="XUnit" Version="2.8.1" />
35+
</ItemGroup>
36+
37+
<ItemGroup>
38+
<None Include="../../.github/README.md" Pack="true" PackagePath="/" />
39+
<None Include="../logo.png" Pack="true" PackagePath="/" />
40+
</ItemGroup>
41+
42+
</Project>
Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
5-
<Nullable>enable</Nullable>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<InternalsVisibleTo>ArwynFr.IntegrationTesting.Tests"</InternalsVisibleTo>
8-
</PropertyGroup>
9-
10-
<ItemGroup>
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.5">
12-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
13-
<PrivateAssets>all</PrivateAssets>
14-
</PackageReference>
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.5" />
16-
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.8.1" />
17-
</ItemGroup>
18-
19-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<InternalsVisibleTo>ArwynFr.IntegrationTesting.Tests"</InternalsVisibleTo>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.6">
12+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
13+
<PrivateAssets>all</PrivateAssets>
14+
</PackageReference>
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.6" />
16+
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.8.1" />
17+
</ItemGroup>
18+
19+
</Project>
Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<ItemGroup>
4-
<ProjectReference Include="..\..\src\ArwynFr.IntegrationTesting\ArwynFr.IntegrationTesting.csproj" />
5-
<ProjectReference Include="..\ArwynFr.IntegrationTesting.Tests.Target\ArwynFr.IntegrationTesting.Tests.Target.csproj" />
6-
</ItemGroup>
7-
8-
<ItemGroup>
9-
<PackageReference Include="coverlet.collector" Version="6.0.2">
10-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
11-
<PrivateAssets>all</PrivateAssets>
12-
</PackageReference>
13-
<PackageReference Include="FluentAssertions" Version="6.12.0" />
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
15-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
16-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
17-
<PrivateAssets>all</PrivateAssets>
18-
</PackageReference>
19-
</ItemGroup>
20-
21-
<PropertyGroup>
22-
<TargetFramework>net8.0</TargetFramework>
23-
<ImplicitUsings>enable</ImplicitUsings>
24-
<Nullable>enable</Nullable>
25-
</PropertyGroup>
26-
27-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<ItemGroup>
4+
<ProjectReference Include="..\..\src\ArwynFr.IntegrationTesting\ArwynFr.IntegrationTesting.csproj" />
5+
<ProjectReference Include="..\ArwynFr.IntegrationTesting.Tests.Target\ArwynFr.IntegrationTesting.Tests.Target.csproj" />
6+
</ItemGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="coverlet.collector" Version="6.0.2">
10+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
11+
<PrivateAssets>all</PrivateAssets>
12+
</PackageReference>
13+
<PackageReference Include="FluentAssertions" Version="6.12.0" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
15+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
16+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
17+
<PrivateAssets>all</PrivateAssets>
18+
</PackageReference>
19+
</ItemGroup>
20+
21+
<PropertyGroup>
22+
<TargetFramework>net8.0</TargetFramework>
23+
<ImplicitUsings>enable</ImplicitUsings>
24+
<Nullable>enable</Nullable>
25+
</PropertyGroup>
26+
27+
</Project>

0 commit comments

Comments
 (0)