Skip to content

Commit

Permalink
chore(deps): update dotnet monorepo
Browse files Browse the repository at this point in the history
| datasource | package                      | from  | to    |
| ---------- | ---------------------------- | ----- | ----- |
| nuget      | Microsoft.Extensions.Hosting | 7.0.1 | 8.0.1 |
| docker     | mcr.microsoft.com/dotnet/sdk | 7.0   | 9.0   |
  • Loading branch information
renovate[bot] authored Oct 8, 2024
1 parent 8c76dba commit b6de724
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Set the base image as the .NET 7.0 SDK (this includes the runtime)
FROM mcr.microsoft.com/dotnet/sdk:7.0 as build-env
FROM mcr.microsoft.com/dotnet/sdk:9.0 as build-env

# Copy everything and publish the release (publish implicitly restores and builds)
COPY . ./
Expand All @@ -14,6 +14,6 @@ LABEL homepage="https://github.com/KinsonDigital/PackageMonster"
LABEL com.github.actions.name="Got Nuget"

# Relayer the .NET SDK, anew with the build output
FROM mcr.microsoft.com/dotnet/sdk:7.0
FROM mcr.microsoft.com/dotnet/sdk:9.0
COPY --from=build-env /out .
ENTRYPOINT [ "dotnet", "/PackageMonster.dll" ]
2 changes: 1 addition & 1 deletion PackageMonster/PackageMonster.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
<PackageReference Include="RestSharp" Version="110.2.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit b6de724

Please sign in to comment.