File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88jobs :
99 build :
10- runs-on : ubuntu-22.04
11- services :
12- # Docker without TLS (plain TCP) !DEPRECATED! with next docker release
13- docker-no-tls :
14- image : docker:28.1-dind
15- env :
16- DOCKER_TLS_CERTDIR : " "
17- ports :
18- - 2375:2375
19- options : >-
20- --privileged
21-
22- # Docker with TLS (secure TCP)
23- docker-tls :
24- image : docker:28.1-dind
25- env :
26- DOCKER_TLS_CERTDIR : /certs
27- ports :
28- - 2376:2376
29- options : >-
30- --privileged
31- volumes :
32- - ${{ github.workspace }}/certs:/certs
33-
10+ runs-on : ubuntu-24.04
3411 strategy :
3512 matrix :
3613 framework :
3714 - net8.0
3815 - net9.0
16+ - net10.0
3917 steps :
4018 - uses : actions/checkout@v4
4119 with :
4422 - name : Setup .NET Core
4523 uses : actions/setup-dotnet@v4
4624 with :
47- dotnet-version : 9 .x
25+ dotnet-version : 10 .x
4826 - name : Build
4927 run : dotnet build -c Release --framework ${{ matrix.framework }}
5028 working-directory : test
Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ permissions:
1010
1111jobs :
1212 build :
13- runs-on : ubuntu-22 .04
13+ runs-on : ubuntu-24 .04
1414 steps :
1515 - uses : actions/checkout@v4
1616 with :
1717 fetch-depth : 0
1818 - name : Setup .NET Core
1919 uses : actions/setup-dotnet@v4
2020 with :
21- dotnet-version : 9 .x
21+ dotnet-version : 10 .x
2222 - name : Install NBGV tool
2323 run : dotnet tool install --tool-path . nbgv
2424 - name : Set Version
Original file line number Diff line number Diff line change 22 <PropertyGroup >
33 <LangVersion >latest</LangVersion >
44 </PropertyGroup >
5- <!-- Strong-naming -->
5+ <!-- Strong-naming -->
66 <PropertyGroup Label =" Signing" >
77 <DebugType >embedded</DebugType >
88 <SignAssembly >true</SignAssembly >
Original file line number Diff line number Diff line change 44
55 <PropertyGroup >
66 <IsPackable >true</IsPackable >
7- <TargetFrameworks >net8.0;net9.0;netstandard2.0;netstandard2.1</TargetFrameworks >
7+ <TargetFrameworks >net8.0;net9.0;net10.0; netstandard2.0;netstandard2.1</TargetFrameworks >
88 <Copyright >Copyright (c) .NET Foundation and Contributors; Andre Hofmeister</Copyright >
99 <PackageTags >Docker Container C# .NET</PackageTags >
1010 <RepositoryType >git</RepositoryType >
Original file line number Diff line number Diff line change 55 <Description >Docker.DotNet.X509 is a library that allows you to use certificate authentication with a remote Docker engine programmatically in your .NET applications.</Description >
66 <TargetFrameworks >net8.0</TargetFrameworks >
77 </PropertyGroup >
8- <ItemGroup Condition =" $(TargetFrameworkIdentifier) == '.NETStandard'" >
8+ <ItemGroup Condition =" ' $(TargetFrameworkIdentifier)' == '.NETStandard' " >
99 <PackageReference Include =" BouncyCastle.Cryptography" Version =" 2.5.1" />
1010 </ItemGroup >
1111 <ItemGroup >
Original file line number Diff line number Diff line change 88 <ItemGroup >
99 <PackageReference Include =" Microsoft.Extensions.Logging.Abstractions" Version =" 8.0.3" />
1010 </ItemGroup >
11- <ItemGroup Condition =" $(TargetFramework) == 'net8.0'" >
11+ <ItemGroup Condition =" ' $(TargetFramework)' == 'net8.0' " >
1212 <PackageReference Include =" System.IO.Pipelines" Version =" 8.0.0" />
1313 </ItemGroup >
14- <ItemGroup Condition =" $(TargetFrameworkIdentifier) == '.NETStandard'" >
14+ <ItemGroup Condition =" ' $(TargetFrameworkIdentifier)' == '.NETStandard' " >
1515 <PackageReference Include =" System.IO.Pipelines" Version =" 8.0.0" />
1616 <PackageReference Include =" System.Net.Http.Json" Version =" 8.0.1" />
1717 <PackageReference Include =" System.Text.Json" Version =" 8.0.5" />
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <TargetFrameworks >net8.0;net9.0</TargetFrameworks >
3+ <TargetFrameworks >net8.0;net9.0;net10.0 </TargetFrameworks >
44 <IsPackable >false</IsPackable >
55 <IsPublishable >false</IsPublishable >
66 </PropertyGroup >
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json" ,
3- "version" : " 3.129 .0" ,
3+ "version" : " 3.130 .0" ,
44 "nugetPackageVersion" : {
55 "semVer" : 2
66 },
You can’t perform that action at this time.
0 commit comments