Skip to content

Commit

Permalink
Complete HTTP client upgrade to .NET 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
commonsensesoftware committed Nov 14, 2022
1 parent 2e8794c commit f1b8184
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<VersionPrefix>7.0.0</VersionPrefix>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<TargetFrameworks>net7.0;netstandard2.0;netstandard1.1</TargetFrameworks>
<TargetFrameworks>net7.0;netstandard1.1;netstandard2.0</TargetFrameworks>
<RootNamespace>Asp.Versioning.Http</RootNamespace>
<AssemblyTitle>API Versioning Client Extensions</AssemblyTitle>
<Description>The HTTP client extensions library for API versioning.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/Client/src/Asp.Versioning.Http.Client/ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Support reading custom HTTP headers (#875)

Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net452;net472</TargetFrameworks>
<TargetFrameworks>net7.0;net452;net472</TargetFrameworks>
<RootNamespace>Asp.Versioning.Http</RootNamespace>
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
<Compile Remove="net6.0\**\*.cs" />
<None Include="net6.0\**\*.cs" />
<Compile Remove="net7.0\**\*.cs" />
<None Include="net7.0\**\*.cs" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' != 'net452'">
Expand Down

0 comments on commit f1b8184

Please sign in to comment.