Skip to content

Commit e9d249e

Browse files
chore(deps) Update dotnet monorepo to v10
1 parent cd915c6 commit e9d249e

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ stages:
1313
- publish
1414

1515
precommit:
16-
image: mcr.microsoft.com/dotnet/sdk:9.0-alpine
16+
image: mcr.microsoft.com/dotnet/sdk:10.0-alpine
1717
stage: test
1818
except:
1919
- public
@@ -40,7 +40,7 @@ precommit:
4040
- pre-commit run stylelint --all-files
4141

4242
build_web:
43-
image: mcr.microsoft.com/dotnet/sdk:9.0-alpine
43+
image: mcr.microsoft.com/dotnet/sdk:10.0-alpine
4444
stage: build
4545
except:
4646
- public

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# to access webapp
1111
# http://localhost:1234
1212

13-
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build
13+
FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine AS build
1414
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
1515

1616
WORKDIR /app
@@ -36,7 +36,7 @@ RUN echo "{\"Demo\": true, \"solr\": {\"atlas_address\": \"$SOLR/solr/atlas\", \
3636

3737
RUN dotnet publish -c Release -o out web.csproj
3838

39-
FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine
39+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-alpine
4040

4141
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
4242
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false

web.Tests/web.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<ItemGroup>
1313
<PackageReference Include="BrowserStackLocal" Version="3.1.0" />
1414
<PackageReference Include="MartinCostello.BrowserStack.Automate" Version="4.2.1" />
15-
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="9.0.18" />
15+
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="10.0.11" />
1616
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
1717

1818
<PackageReference Include="Moq" Version="4.20.72" />
1919
<PackageReference Include="Selenium.WebDriver" Version="4.46.0" />
2020
<PackageReference Include="xunit" Version="2.9.3" />
21-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.18" />
22-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.18" />
23-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.18">
21+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.11" />
22+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.11" />
23+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.11">
2424
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2525
<PrivateAssets>all</PrivateAssets>
2626
</PackageReference>

web/web.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<DebugSymbols>true</DebugSymbols>
2929
</PropertyGroup>
3030
<ItemGroup>
31-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.18" />
31+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.11" />
3232
<!-- Pin IdentityModel to 8.x to resolve version conflict between ITfoxtec (pulls 7.x) and JwtBearer 9.x (needs 8.x) -->
3333
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.22.0" />
3434
<PackageReference Include="ITfoxtec.Identity.Saml2" Version="4.20.1" />
@@ -46,18 +46,18 @@
4646
<PackageReference Include="LigerShark.WebOptimizer.AutoPrefixer" Version="7.1.8-beta" />
4747
<PackageReference Include="LigerShark.WebOptimizer.Core" Version="3.0.477" />
4848
<PackageReference Include="Markdig" Version="0.45.0" />
49-
<PackageReference Include="Microsoft.AspNetCore.Authentication.Negotiate" Version="9.0.18" />
49+
<PackageReference Include="Microsoft.AspNetCore.Authentication.Negotiate" Version="10.0.11" />
5050
<PackageReference
5151
Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore"
52-
Version="9.0.18"
52+
Version="10.0.11"
5353
/>
5454
<PackageReference
5555
Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation"
56-
Version="9.0.18"
56+
Version="10.0.11"
5757
/>
58-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.18" />
59-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.18" />
60-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.18">
58+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.11" />
59+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.11" />
60+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.11">
6161
<PrivateAssets>all</PrivateAssets>
6262
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
6363
</PackageReference>
@@ -68,7 +68,7 @@
6868
<PackageReference Include="SolrNet.Core" Version="1.2.1" />
6969
<PackageReference Include="SolrNet.Microsoft.DependencyInjection" Version="1.2.1" />
7070
<PackageReference Include="System.Data.SqlClient" Version="4.9.1" />
71-
<PackageReference Include="System.Text.Json" Version="9.0.18" />
71+
<PackageReference Include="System.Text.Json" Version="10.0.11" />
7272
<PackageReference Include="UAParser" Version="3.1.47" />
7373
<PackageReference Include="WebMarkupMin.AspNetCore5" Version="2.17.0" />
7474
<PackageReference Include="SonarAnalyzer.CSharp" Version="10.31.0.145097">

0 commit comments

Comments
 (0)