diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f613c4a..f426961b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,12 +7,13 @@ on: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: matrix: framework: - net8.0 - net9.0 + - net10.0 steps: - uses: actions/checkout@v4 with: @@ -20,7 +21,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v4 with: - dotnet-version: 9.x + dotnet-version: 10.x - name: Build run: dotnet build -c Release --framework ${{ matrix.framework }} - name: Test diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f6e7330d..e2464a2e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ permissions: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 with: @@ -18,7 +18,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v4 with: - dotnet-version: 9.x + dotnet-version: 10.x - name: Install NBGV tool run: dotnet tool install --tool-path . nbgv - name: Set Version diff --git a/Directory.Build.props b/Directory.Build.props index 979be6d3..dffd69df 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,7 +2,7 @@ latest - + embedded true diff --git a/src/Directory.Build.props b/src/Directory.Build.props index a9c572ad..5d87b16b 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -4,7 +4,7 @@ true - net8.0;net9.0;netstandard2.0;netstandard2.1 + net8.0;net9.0;net10.0;netstandard2.0;netstandard2.1 Copyright (c) .NET Foundation and Contributors; Andre Hofmeister Docker Container C# .NET git diff --git a/src/Docker.DotNet.X509/Docker.DotNet.X509.csproj b/src/Docker.DotNet.X509/Docker.DotNet.X509.csproj index 8c2dc7c0..d3984ba6 100644 --- a/src/Docker.DotNet.X509/Docker.DotNet.X509.csproj +++ b/src/Docker.DotNet.X509/Docker.DotNet.X509.csproj @@ -4,7 +4,7 @@ Docker.DotNet.Enhanced.X509 Docker.DotNet.X509 is a library that allows you to use certificate authentication with a remote Docker engine programmatically in your .NET applications. - + diff --git a/src/Docker.DotNet/Docker.DotNet.csproj b/src/Docker.DotNet/Docker.DotNet.csproj index 97a59fa4..de9933c9 100644 --- a/src/Docker.DotNet/Docker.DotNet.csproj +++ b/src/Docker.DotNet/Docker.DotNet.csproj @@ -7,10 +7,10 @@ - + - + diff --git a/test/Docker.DotNet.Tests/Docker.DotNet.Tests.csproj b/test/Docker.DotNet.Tests/Docker.DotNet.Tests.csproj index e11a23a5..57b89dd0 100644 --- a/test/Docker.DotNet.Tests/Docker.DotNet.Tests.csproj +++ b/test/Docker.DotNet.Tests/Docker.DotNet.Tests.csproj @@ -1,6 +1,6 @@ - net8.0;net9.0 + net8.0;net9.0;net10.0 false false diff --git a/version.json b/version.json index 5c6991d6..b5d233cd 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "3.129.0", + "version": "3.130.0", "nugetPackageVersion": { "semVer": 2 },