Skip to content

Commit bfde026

Browse files
chore(deps): update dotnet monorepo to v9
| datasource | package | from | to | | ---------- | ----------------------------------------------------- | ----- | ----- | | nuget | Microsoft.Extensions.DependencyInjection.Abstractions | 8.0.0 | 9.0.8 | | nuget | Microsoft.Extensions.FileSystemGlobbing | 8.0.0 | 9.0.8 | | nuget | Microsoft.Extensions.Hosting | 8.0.0 | 9.0.8 | | docker | mcr.microsoft.com/dotnet/sdk | 8.0 | 9.0 |
1 parent 3da5f98 commit bfde026

2 files changed

Lines changed: 5 additions & 5 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:9.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:9.0
1818
COPY --from=build-env /out .
1919
ENTRYPOINT [ "dotnet", "/VersionMiner.dll" ]

VersionMiner/VersionMiner.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
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="9.0.8" />
43+
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="9.0.8" />
44+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.8" />
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)