Skip to content

Commit

Permalink
Remove some unnecessary conditions in project files
Browse files Browse the repository at this point in the history
  • Loading branch information
mburumaxwell committed May 6, 2024
1 parent 1831ab9 commit 0a664d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>A serializer implementation for Tingle.EventBus using Newtonsoft.Json</Description>
<PackageTags>$(PackageTags);Serializers;Newtonsoft</PackageTags>
<RootNamespace>Tingle.EventBus.Serializers</RootNamespace>
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">false</IsTrimmable>
<IsTrimmable>false</IsTrimmable>
</PropertyGroup>

<ItemGroup>
Expand Down
5 changes: 1 addition & 4 deletions src/Tingle.EventBus/Tingle.EventBus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,8 @@
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
<PackageReference Include="Polly.Contrib.WaitAndRetry" Version="1.1.1" />
<PackageReference Include="Polly.Core" Version="8.3.1" />
<PackageReference Include="System.Memory.Data" Version="8.0.0" />
</ItemGroup>

<ItemGroup Condition="!$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="8.0.1" />
<PackageReference Include="System.Memory.Data" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.3" />
</ItemGroup>

Expand Down

0 comments on commit 0a664d1

Please sign in to comment.