diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ffc390d..7746361 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - dotnet-version: [ '8.0.x' ] + dotnet-version: [ '9.0.x' ] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56b5f0c..17e38ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - dotnet-version: [ '8.0.x' ] + dotnet-version: [ '9.0.x' ] steps: - uses: actions/checkout@v4 @@ -33,7 +33,7 @@ jobs: strategy: fail-fast: false matrix: - dotnet-version: [ '8.0.x' ] + dotnet-version: [ '9.0.x' ] steps: - uses: actions/checkout@v4 diff --git a/Dockerfile.CLI b/Dockerfile.CLI index d17e564..285775e 100644 --- a/Dockerfile.CLI +++ b/Dockerfile.CLI @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS base +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS base COPY *.sln . COPY Selector/*.csproj ./Selector/ @@ -15,7 +15,7 @@ COPY . ./ FROM base as publish RUN dotnet publish Selector.CLI/Selector.CLI.csproj -c Release -o /app -FROM mcr.microsoft.com/dotnet/aspnet:8.0 +FROM mcr.microsoft.com/dotnet/aspnet:9.0 WORKDIR /app COPY --from=publish /app ./ ENV DOTNET_EnableDiagnostics=0 diff --git a/Dockerfile.Web b/Dockerfile.Web index 4b5d9a5..da548ea 100644 --- a/Dockerfile.Web +++ b/Dockerfile.Web @@ -6,7 +6,7 @@ RUN npm ci COPY ./Selector.Web ./ RUN npm run build -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS base +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS base COPY *.sln . COPY Selector/*.csproj ./Selector/ @@ -25,7 +25,7 @@ FROM base as publish COPY --from=frontend /Selector.Web/wwwroot Selector.Web/wwwroot/ RUN dotnet publish Selector.Web/Selector.Web.csproj -c Release -o /app -FROM mcr.microsoft.com/dotnet/aspnet:8.0 +FROM mcr.microsoft.com/dotnet/aspnet:9.0 EXPOSE 80 WORKDIR /app COPY --from=publish /app ./ diff --git a/Selector.CLI/Selector.CLI.csproj b/Selector.CLI/Selector.CLI.csproj index 4c516d5..4fabe92 100644 --- a/Selector.CLI/Selector.CLI.csproj +++ b/Selector.CLI/Selector.CLI.csproj @@ -2,29 +2,29 @@ Exe - net8.0 + net9.0 Selector.CLI.Program latest - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - - - + + + + + + + + + + - + diff --git a/Selector.Cache/Selector.Cache.csproj b/Selector.Cache/Selector.Cache.csproj index 4e4c297..28bf6d6 100644 --- a/Selector.Cache/Selector.Cache.csproj +++ b/Selector.Cache/Selector.Cache.csproj @@ -1,15 +1,15 @@ - net8.0 + net9.0 true latest - - - + + + diff --git a/Selector.Data/Selector.Data.csproj b/Selector.Data/Selector.Data.csproj index 7328aaa..0218695 100644 --- a/Selector.Data/Selector.Data.csproj +++ b/Selector.Data/Selector.Data.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable @@ -11,7 +11,7 @@ - + diff --git a/Selector.Event/Selector.Event.csproj b/Selector.Event/Selector.Event.csproj index 18728aa..bdb9907 100644 --- a/Selector.Event/Selector.Event.csproj +++ b/Selector.Event/Selector.Event.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable diff --git a/Selector.MAUI/Selector.MAUI.csproj b/Selector.MAUI/Selector.MAUI.csproj index 7032ff2..69684f6 100644 --- a/Selector.MAUI/Selector.MAUI.csproj +++ b/Selector.MAUI/Selector.MAUI.csproj @@ -1,8 +1,8 @@  - $(TargetFrameworks);net8.0-ios;net8.0-maccatalyst - $(TargetFrameworks);net8.0-windows10.0.19041.0 + $(TargetFrameworks);net9.0-ios;net9.0-maccatalyst + $(TargetFrameworks);net9.0-windows10.0.19041.0 Exe @@ -23,8 +23,8 @@ 1.0 1 - 14.2 - 14.0 + 15.0 + 15.0 24.0 10.0.17763.0 10.0.17763.0 @@ -62,6 +62,12 @@ True None + + iPhone Developer + + + iPhone Developer + @@ -77,12 +83,12 @@ - - - - + + + + - + diff --git a/Selector.Model/Selector.Model.csproj b/Selector.Model/Selector.Model.csproj index 10bd204..4a99c9e 100644 --- a/Selector.Model/Selector.Model.csproj +++ b/Selector.Model/Selector.Model.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 true latest @@ -12,20 +12,20 @@ - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - + + + diff --git a/Selector.SignalR/Selector.SignalR.csproj b/Selector.SignalR/Selector.SignalR.csproj index b94d273..9234cf8 100644 --- a/Selector.SignalR/Selector.SignalR.csproj +++ b/Selector.SignalR/Selector.SignalR.csproj @@ -1,8 +1,8 @@ - net8.0 - $(TargetFrameworks);net8.0-ios;net8.0-maccatalyst + net9.0 + $(TargetFrameworks);net9.0-ios;net9.0-maccatalyst enable enable @@ -15,7 +15,7 @@ --> - + diff --git a/Selector.Tests/Selector.Tests.csproj b/Selector.Tests/Selector.Tests.csproj index 3879f82..d9844d5 100644 --- a/Selector.Tests/Selector.Tests.csproj +++ b/Selector.Tests/Selector.Tests.csproj @@ -1,18 +1,18 @@ - net8.0 + net9.0 false latest - - + + - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/Selector.Web/Selector.Web.csproj b/Selector.Web/Selector.Web.csproj index b8df8aa..fa44a10 100644 --- a/Selector.Web/Selector.Web.csproj +++ b/Selector.Web/Selector.Web.csproj @@ -1,7 +1,7 @@  - net8.0 + net9.0 latest true @@ -17,24 +17,24 @@ - - + + - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + - - - - - - + + + + + + diff --git a/Selector/Selector.csproj b/Selector/Selector.csproj index 83a1f1f..b3f51d9 100644 --- a/Selector/Selector.csproj +++ b/Selector/Selector.csproj @@ -1,15 +1,15 @@  - net8.0 - $(TargetFrameworks);net8.0-ios;net8.0-maccatalyst + net9.0 + $(TargetFrameworks);net9.0-ios;net9.0-maccatalyst true latest - - + +