Skip to content
This repository has been archived by the owner on Jun 14, 2023. It is now read-only.

chore(deps): update dotnet monorepo to v7 (major) #73

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
chore(deps): update dotnet monorepo to v7
renovate[bot] authored Jun 13, 2023
commit 7671aeabff3285bed8aa02c28748730dbc525222
4 changes: 2 additions & 2 deletions Cdn.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS BUILDER
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS BUILDER

COPY --from=ghcr.io/skyra-project/grpc-protofiles:latest /skyra /skyra

@@ -13,7 +13,7 @@ RUN dotnet publish Cdn -p:PublishTrimmed=true -p:PublishSingleFile=true -p:Debug
# Runner Stage #
# ================ #

FROM mcr.microsoft.com/dotnet/runtime-deps:6.0
FROM mcr.microsoft.com/dotnet/runtime-deps:7.0

WORKDIR /skyra/app

4 changes: 2 additions & 2 deletions Notifications.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS BUILDER
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS BUILDER

COPY --from=ghcr.io/skyra-project/grpc-protofiles:latest /skyra /skyra

@@ -13,7 +13,7 @@ RUN dotnet publish Notifications -p:PublishTrimmed=true -p:PublishSingleFile=tru
# Runner Stage #
# ================ #

FROM mcr.microsoft.com/dotnet/runtime-deps:6.0
FROM mcr.microsoft.com/dotnet/runtime-deps:7.0

WORKDIR /skyra/app

6 changes: 3 additions & 3 deletions sources/Database/Database.csproj
Original file line number Diff line number Diff line change
@@ -8,12 +8,12 @@

<ItemGroup>
<PackageReference Include="EFCore.NamingConventions" Version="6.0.0"/>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.1"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.1">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.7"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.1"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.7"/>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.2"/>
<PackageReference Include="Remora.Results" Version="7.1.0"/>
</ItemGroup>