Skip to content

Commit

Permalink
Merge pull request #1052 from thompson-tomo/chore/#1051_TweakDependen…
Browse files Browse the repository at this point in the history
…cies

#1051 Simplify dependencies on net 3.1/5/6
  • Loading branch information
andersjonsson committed May 17, 2024
2 parents 5c7a49e + 02fa2ae commit 8593bc9
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/SoapCore/SoapCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,24 @@
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.1.1" />
<PackageReference Include="System.IO.Pipelines" Version="4.7.0" />
<PackageReference Include="System.CodeDom" Version="4.7.0" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="4.7.1" />
<PackageReference Include="System.Text.Encodings.Web" Version="4.7.2" />
<PackageReference Include="Microsoft.AspNetCore.Connections.Abstractions" Version="2.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.1.38" />
</ItemGroup>

<ItemGroup Condition="$(TargetFramework) == 'netcoreapp3.1'">
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="System.CodeDom" Version="4.7.0" />
<PackageReference Include="Microsoft.AspNetCore.Connections.Abstractions" Version="3.1.32" />
</ItemGroup>

<ItemGroup Condition="$(TargetFramework) == 'net5.0'">
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="System.CodeDom" Version="5.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Connections.Abstractions" Version="5.0.17" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework) == 'net6.0'">
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="System.CodeDom" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Connections.Abstractions" Version="6.0.27" />
</ItemGroup>

<ItemGroup>
Expand All @@ -64,14 +64,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.1.38" />
<PackageReference Include="System.Drawing.Common" Version="4.7.3" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="4.7.1" />
<PackageReference Include="System.ServiceModel.Http" Version="4.8.1" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Text.Encodings.Web" Version="4.7.2" />
</ItemGroup>
</Project>

0 comments on commit 8593bc9

Please sign in to comment.