Skip to content

Commit 041a2ba

Browse files
committed
Multi-target Steeltoe against net8.0/net10.0
1 parent e851367 commit 041a2ba

33 files changed

Lines changed: 34 additions & 34 deletions

File tree

src/Bootstrap/src/AutoConfiguration/Steeltoe.Bootstrap.AutoConfiguration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0</TargetFrameworks>
3+
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
44
<Description>Automatically configure Steeltoe packages that are referenced by a project. This is not a meta package, other packages must be added separately.</Description>
55
<PackageTags>autoconfiguration;automatic;configuration;application;bootstrapping;starter</PackageTags>
66
<IsPackable>true</IsPackable>

src/Common/src/Certificates/Steeltoe.Common.Certificates.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0</TargetFrameworks>
3+
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
44
<Description>Steeltoe shared library for working with certificates.</Description>
55
<PackageTags>security;pem;certificate</PackageTags>
66
<IsPackable>true</IsPackable>

src/Common/src/Common/Steeltoe.Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0</TargetFrameworks>
3+
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
44
<Description>Abstractions and code shared by many Steeltoe components.</Description>
55
<PackageTags>common;utility</PackageTags>
66
<IsPackable>true</IsPackable>

src/Common/src/Hosting/Steeltoe.Common.Hosting.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0</TargetFrameworks>
3+
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
44
<Description>Steeltoe library for commonly-used ASP.NET Core hosting-related functions.</Description>
55
<PackageTags>hosting</PackageTags>
66
<IsPackable>true</IsPackable>

src/Common/src/Http/Steeltoe.Common.Http.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0</TargetFrameworks>
3+
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
44
<Description>Shared code related to HTTP, primarily for working with HttpClient.</Description>
55
<PackageTags>http</PackageTags>
66
<IsPackable>true</IsPackable>

src/Common/src/Logging/Steeltoe.Common.Logging.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0</TargetFrameworks>
3+
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
44
<Description>Abstractions and code for bootstrap logging, before the IoC container is built. Bootstrap logging is replaced by the runtime logging (what the rest of your application is using) after the IoC container is built.</Description>
55
<PackageTags>bootstrap;logging</PackageTags>
66
<IsPackable>true</IsPackable>

src/Common/src/Net/Steeltoe.Common.Net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0</TargetFrameworks>
3+
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
44
<Description>Abstractions and code for using Windows network files shares.</Description>
55
<PackageTags>Windows-file-sharing;SMB;CIFS</PackageTags>
66
<IsPackable>true</IsPackable>

src/Configuration/src/Abstractions/Steeltoe.Configuration.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0</TargetFrameworks>
3+
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
44
<RootNamespace>Steeltoe.Configuration</RootNamespace>
55
<Description>Abstractions and code shared by Steeltoe Configuration libraries.</Description>
66
<PackageTags>abstractions;configuration</PackageTags>

src/Configuration/src/CloudFoundry/Steeltoe.Configuration.CloudFoundry.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0</TargetFrameworks>
3+
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
44
<Description>Configuration provider and IOptions support for reading Cloud Foundry environment variables.</Description>
55
<PackageTags>configuration;ConfigurationProvider;CloudFoundry;vcap;vcap_application;vcap_services;tanzu</PackageTags>
66
<IsPackable>true</IsPackable>

src/Configuration/src/ConfigServer/Steeltoe.Configuration.ConfigServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0</TargetFrameworks>
3+
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
44
<Description>Configuration provider for Spring Cloud Config Server.</Description>
55
<PackageTags>configuration;ConfigurationProvider;spring-cloud;Spring;Cloud;Config;Server;Spring-Cloud-Config-Server;tanzu</PackageTags>
66
<IsPackable>true</IsPackable>

0 commit comments

Comments
 (0)