Skip to content

Commit

Permalink
Changed: Do not include unnecessary dependency in .NET 5 & .NET 6
Browse files Browse the repository at this point in the history
  • Loading branch information
Sewer56 committed Jun 17, 2022
1 parent e17a350 commit 2fcea9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Reloaded.Memory.Buffers/Reloaded.Memory.Buffers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<RepositoryUrl>https://github.com/Reloaded-Project/Reloaded.Memory.Buffers</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>An implementation of efficient, shared, concurrent and permanent storage of objects in unmanaged memory in static, non-changing locations that last the lifetime of a given process.</Description>
<Version>1.4.5</Version>
<Version>1.4.6</Version>
<Authors>Sewer56</Authors>
<Company></Company>
<Product>Project Reloaded</Product>
Expand Down Expand Up @@ -39,7 +39,7 @@

<ItemGroup>
<PackageReference Include="Reloaded.Memory" Version="6.1.3" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.7.1" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.7.1" Condition="'$(TargetFramework)' != 'net5.0' And '$(TargetFramework)' != 'net6.0'" />
</ItemGroup>

</Project>

0 comments on commit 2fcea9a

Please sign in to comment.