Skip to content

Commit

Permalink
Merge pull request #48 from tpeczek/#47-removing-bounds-on-net-framew…
Browse files Browse the repository at this point in the history
…ork-dependencies

Removing upper bounds for .NET Framework dependencies (#47)
  • Loading branch information
tpeczek authored Feb 28, 2022
2 parents 5270ef3 + 880c318 commit 5b24607
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="[2.1.0,3.0.0)" />
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="[2.1.0,3.0.0)" />
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="[2.1.0,)" />
<PackageReference Include="Microsoft.AspNetCore.Authorization.Policy" Version="[2.1.0,3.0.0)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="[2.1.0,3.0.0)" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="[2.1.0,3.0.0)" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="[2.1.0,3.0.0)" />
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="[2.1.0,3.0.0)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="[2.1.0,)" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="[2.1.0,)" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="[2.1.0,)" />
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="[2.1.0,)" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'net461'">
<FrameworkReference Include="Microsoft.AspNetCore.App" />
Expand Down

0 comments on commit 5b24607

Please sign in to comment.