Skip to content

Commit cc84c8e

Browse files
chore(deps): update dotnet monorepo to v10
| datasource | package | from | to | | ---------- | ----------------------------------------------------- | ----- | -------- | | nuget | Microsoft.CodeAnalysis.NetAnalyzers | 8.0.0 | 10.0.200 | | nuget | Microsoft.Extensions.DependencyInjection.Abstractions | 8.0.0 | 10.0.4 | | nuget | Microsoft.Extensions.FileSystemGlobbing | 8.0.0 | 10.0.4 | | nuget | Microsoft.Extensions.Hosting | 8.0.0 | 10.0.4 | | docker | mcr.microsoft.com/dotnet/sdk | 8.0 | 10.0 |
1 parent 3da5f98 commit cc84c8e

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Set the base image as the .NET 8.0 SDK (this includes the runtime)
2-
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build-env
2+
FROM mcr.microsoft.com/dotnet/sdk:10.0 as build-env
33

44
# Copy everything and publish the release (publish implicitly restores and builds)
55
COPY . ./
@@ -14,6 +14,6 @@ LABEL homepage="https://github.com/KinsonDigital/VersionMiner"
1414
LABEL com.github.actions.name="Version Miner"
1515

1616
# Relayer the .NET SDK, anew with the build output
17-
FROM mcr.microsoft.com/dotnet/sdk:8.0
17+
FROM mcr.microsoft.com/dotnet/sdk:10.0
1818
COPY --from=build-env /out .
1919
ENTRYPOINT [ "dotnet", "/VersionMiner.dll" ]

Testing/VersionMinerTests/VersionMinerTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>
1717
<PackageReference Include="FluentAssertions" Version="6.12.0" />
18-
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
18+
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.200">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
</PackageReference>

VersionMiner/VersionMiner.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535

3636
<ItemGroup>
3737
<PackageReference Include="CommandLineParser" Version="2.9.1" />
38-
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
38+
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.200">
3939
<PrivateAssets>all</PrivateAssets>
4040
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4141
</PackageReference>
42-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
43-
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="8.0.0" />
44-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
42+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.4" />
43+
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="10.0.4" />
44+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.4" />
4545
<PackageReference Include="RestSharp" Version="110.2.0" />
4646
<PackageReference Include="Octokit" Version="9.1.2" />
4747
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">

0 commit comments

Comments
 (0)