Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f5b51f4

Browse files
chore(deps): update dotnet monorepo
1 parent 8296585 commit f5b51f4

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

AudiobookManager/AudiobookManager.Api/AudiobookManager.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.20">
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.9">
1111
<PrivateAssets>all</PrivateAssets>
1212
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1313
</PackageReference>

AudiobookManager/AudiobookManager.Database/AudiobookManager.Database.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
<ItemGroup>
1010
<PackageReference Include="EFCore.NamingConventions" Version="8.0.3" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.20" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.20" />
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.20">
11+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.9" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.9" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.9">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>

AudiobookManager/AudiobookManager.FileManager/AudiobookManager.FileManager.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
11-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.3" />
10+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.9" />
11+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.9" />
1212
<PackageReference Include="z440.atl.core" Version="6.26.0" />
1313
</ItemGroup>
1414

AudiobookManager/AudiobookManager.HubClient/AudiobookManager.HubClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.20" />
11+
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.9" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

AudiobookManager/AudiobookManager.Scraping/AudiobookManager.Scraping.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
<ItemGroup>
1010
<PackageReference Include="AngleSharp" Version="1.3.0" />
11-
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="8.0.20" />
12-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
13-
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
11+
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="9.0.9" />
12+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.9" />
13+
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.9" />
1414
<PackageReference Include="Polly" Version="8.6.4" />
1515
</ItemGroup>
1616

AudiobookManager/AudiobookManager.Services/AudiobookManager.Services.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
11-
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
10+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.9" />
11+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="9.0.9" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build-env
1+
FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine AS build-env
22
WORKDIR /app
33

44
# Copy everything
@@ -20,7 +20,7 @@ COPY /client ./
2020
RUN npm run build
2121

2222
# Build runtime image
23-
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine
23+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-alpine
2424

2525
# User manipulation tools
2626
RUN apk add --no-cache --update --upgrade shadow

0 commit comments

Comments
 (0)