We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Contentful.AspNetCore is referencing deprecated packages such as Microsoft.AspNetCore.Http.
Contentful.AspNetCore
Microsoft.AspNetCore.Http
Please use conditional references in your project file so those of us that want to use this in .net6+ don't have to drag in obsolete packages.
.net6+
With this change, all tests passed.
</ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' != 'net462' and '$(TargetFramework)' != 'netstandard2.0' and '$(TargetFramework)' != 'netstandard2.1' "> <FrameworkReference Include="Microsoft.AspNetCore.App" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard2.1' "> <PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" /> <PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" /> <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor" Version="2.2.0" /> <PackageReference Include="Microsoft.AspNetCore.Razor" Version="2.2.0" /> <PackageReference Include="Microsoft.AspNetCore.Razor.Runtime" Version="2.2.0" /> </ItemGroup>
The text was updated successfully, but these errors were encountered:
Excellent suggestion, I'll take care of it.
Sorry, something went wrong.
is there an update on this? there are also some vulnerable transitive dependencies in the latest version.
No branches or pull requests
Contentful.AspNetCore
is referencing deprecated packages such asMicrosoft.AspNetCore.Http
.Please use conditional references in your project file so those of us that want to use this in
.net6+
don't have to drag in obsolete packages.With this change, all tests passed.
The text was updated successfully, but these errors were encountered: