Skip to content

Commit

Permalink
update framework dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
c7hm4r committed May 17, 2020
1 parent 745a8d4 commit 25c6015
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
11 changes: 5 additions & 6 deletions src/LockFreeDoublyLinkedList.csproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1</TargetFrameworks>
<!-- net45;net40 -->
<Title>Lock free doubly linked list</Title>
<Product>Lock free doubly linked list</Product>
<PackageId>LockFreeDoublyLinkedList</PackageId>
<Description>A lock free doubly linked list for high concurrency.</Description>
<Version>3.1.0.0</Version>
<Version>4.0.0.0</Version>
<Authors>Christoph Müller ([email protected])</Authors>
<Company>Christoph Müller ([email protected])</Company>
<Copyright>Copyright © Christoph Müller 2018</Copyright>
<Copyright>Copyright © Christoph Müller 2018–2020</Copyright>
<NeutralLanguage>en</NeutralLanguage>
<IncludeSymbols>true</IncludeSymbols>
<PackageProjectUrl>https://github.com/2i/LockFreeDoublyLinkedList</PackageProjectUrl>
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0.html
</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/c7hm4r/LockFreeDoublyLinkedList</PackageProjectUrl>
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0.html</PackageLicenseUrl>
<PackageTags>lock-free thread-safe linked list concurrency</PackageTags>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions test/test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand All @@ -18,4 +18,4 @@
<Optimize>true</Optimize>
<DefineConstants></DefineConstants>
</PropertyGroup>
</Project>
</Project>

0 comments on commit 25c6015

Please sign in to comment.