Skip to content

Commit

Permalink
Added .NET 9.0 support, removed .NET 6.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianeicher committed Dec 7, 2024
1 parent 65cea28 commit 05cdd73
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Client/Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Project properties -->
<PropertyGroup>
<AssemblyName>OpenServiceBroker.Client</AssemblyName>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1;net8.0;net9.0</TargetFrameworks>
<Summary>Client library for the Open Service Broker API</Summary>
<Description>A client library for calling the Open Service Broker API. This specification allows developers, ISVs, and SaaS vendors a single, simple, and elegant way to deliver services to applications running within cloud native platforms such as Cloud Foundry, OpenShift, and Kubernetes.</Description>
<PackageTags>OSB;Open Service Broker;Client</PackageTags>
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Model.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Project properties -->
<PropertyGroup>
<AssemblyName>OpenServiceBroker.Model</AssemblyName>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1;net8.0;net9.0</TargetFrameworks>
<Summary>DTO classes for the Open Service Broker API</Summary>
<Description>DTO classes for the Open Service Broker API. This is usually referenced indirectly via OpenServiceBroker.Client or OpenServiceBroker.Server.</Description>
<PackageTags>OSB;Open Service Broker;Model</PackageTags>
Expand Down
10 changes: 5 additions & 5 deletions src/Server/Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Project properties -->
<PropertyGroup>
<AssemblyName>OpenServiceBroker.Server</AssemblyName>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<Summary>Server library for the Open Service Broker API</Summary>
<Description>A library to help you provide an ASP.NET Core implementation of the Open Service Broker API. This specification allows developers, ISVs, and SaaS vendors a single, simple, and elegant way to deliver services to applications running within cloud native platforms such as Cloud Foundry, OpenShift, and Kubernetes.</Description>
<PackageTags>OSB;Open Service Broker;Server;ASP.NET Core;Controller</PackageTags>
Expand All @@ -15,13 +15,13 @@
<ItemGroup>
<ProjectReference Include="..\Model\Model.csproj" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework)=='net6.0'">
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.36" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework)=='net8.0'">
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.11" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework)=='net9.0'">
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0" />
</ItemGroup>

</Project>

0 comments on commit 05cdd73

Please sign in to comment.