Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
955db0e
build: .NET 10 upgrade
runejo Nov 25, 2025
98e1c6d
Merge branch 'main' into build-dotnet-10
runejo Apr 9, 2026
0d7113d
Update dependencies
runejo Apr 9, 2026
e9ef37e
Bump .NET SDK and ASP.NET base images to latest versions
runejo Apr 9, 2026
83bdddc
Merge branch 'main' into build-dotnet-10
runejo Apr 17, 2026
d03f363
chore: update package references to version 10.0.6 for Microsoft.Exte…
runejo Apr 17, 2026
e9df999
chore: update .NET SDK and ASP.NET base images to version 10.0.202 an…
runejo Apr 17, 2026
b0b81ce
temporary set TreatWarningsAsErrors to False for Release configuratio…
runejo Apr 17, 2026
6349d43
chore: remove unused Swagger filters and update Swashbuckle.AspNetCor…
runejo Apr 17, 2026
965ee61
Revert "chore: remove unused Swagger filters and update Swashbuckle.A…
runejo Apr 17, 2026
f37be47
chore: remove unused Swagger filters to streamline API documentation
runejo Apr 17, 2026
3ccc46a
chore: enable TreatWarningsAsErrors for Debug and Release configurati…
runejo Apr 17, 2026
a5bea6e
chore: remove unused log4net package reference from project file
runejo Apr 17, 2026
ae74044
chore: update .NET SDK version to 10.0.202 in global.json
runejo Apr 17, 2026
8cb3315
temporary allow warnings and patch transitive security issues
runejo Apr 17, 2026
0c1119b
Merge branch 'main' into build-dotnet-10
runejo Apr 23, 2026
31a914f
build: update package references to latest versions
runejo Apr 23, 2026
da804e9
build: update coverlet.collector to version 10.0.0 in test projects
runejo Apr 23, 2026
e4fcde0
build: update .NET SDK and ASP.NET base image versions in Dockerfile
runejo Apr 23, 2026
333abd6
Merge branch 'main' into build-dotnet-10
runejo Apr 23, 2026
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Learn about building .NET container images:
# https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0.420-alpine3.23 AS build
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:10.0.203-alpine3.23 AS build
ARG TARGETARCH
WORKDIR /source

Expand All @@ -15,7 +15,7 @@ RUN \
# Enable globalization and time zones:
# https://github.com/dotnet/dotnet-docker/blob/main/samples/enable-globalization.md
# final stage/image
FROM mcr.microsoft.com/dotnet/aspnet:8.0.26-alpine3.23
FROM mcr.microsoft.com/dotnet/aspnet:10.0.7-alpine3.23
EXPOSE 8080

ENV \
Expand Down
3 changes: 2 additions & 1 deletion Px.Abstractions/Px.Abstractions.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand All @@ -15,6 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="log4net" Version="3.3.1" />
<PackageReference Include="PcAxis.Core" Version="1.3.0" />
<PackageReference Include="PCAxis.Menu" Version="1.0.5" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Px.Search.Lucene/Px.Search.Lucene.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand All @@ -18,7 +18,7 @@
<PackageReference Include="Lucene.Net" Version="4.8.0-beta00017" />
<PackageReference Include="Lucene.Net.Analysis.Common" Version="4.8.0-beta00017" />
<PackageReference Include="Lucene.Net.QueryParser" Version="4.8.0-beta00017" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.7" />
</ItemGroup>

<ItemGroup>
Expand Down
16 changes: 8 additions & 8 deletions Px.Search/Px.Search.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand All @@ -15,18 +15,18 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.7" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Px.Abstractions\Px.Abstractions.csproj" />
</ItemGroup>

<ItemGroup>
<!-- Include must be the fully qualified .NET type name of the Attribute to create. -->
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>Px.Search.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<!-- Include must be the fully qualified .NET type name of the Attribute to create. -->
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>Px.Search.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>

</Project>
10 changes: 5 additions & 5 deletions PxWeb.UnitTests/PxWeb.UnitTests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
Expand All @@ -17,11 +17,11 @@

<ItemGroup>
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="MSTest.TestAdapter" Version="4.0.1" />
<PackageReference Include="MSTest.TestFramework" Version="4.0.1" />
<PackageReference Include="coverlet.collector" Version="8.0.1">
<PackageReference Include="MSTest.TestAdapter" Version="4.2.1" />
<PackageReference Include="MSTest.TestFramework" Version="4.2.1" />
<PackageReference Include="coverlet.collector" Version="10.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
52 changes: 0 additions & 52 deletions PxWeb/Filters/Api2/BasePathFilter.cs

This file was deleted.

176 changes: 0 additions & 176 deletions PxWeb/Filters/Api2/GeneratePathParamsValidationFilter.cs

This file was deleted.

12 changes: 3 additions & 9 deletions PxWeb/PxWeb.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>disabled</ImplicitUsings>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
Expand Down Expand Up @@ -42,9 +42,7 @@

<ItemGroup>
<PackageReference Include="AspNetCoreRateLimit" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="PCAxis.Menu.ConfigDatamodelMenu" Version="1.0.10" />
<PackageReference Include="PCAxis.Serializers" Version="1.11.0" />
Expand All @@ -55,12 +53,8 @@
<PackageReference Include="Swashbuckle.AspNetCore.Newtonsoft" Version="9.0.6" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="9.0.6" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="9.0.6" />
<PackageReference Include="System.IO.Hashing" Version="9.0.14" />
<PackageReference Include="System.IO.Packaging" Version="9.0.14" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.6" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="System.IO.Hashing" Version="10.0.7" />
<PackageReference Include="System.IO.Packaging" Version="10.0.7" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading
Loading