Skip to content

Commit

Permalink
Version 4.0.0.1: produce snupkg, new license config
Browse files Browse the repository at this point in the history
  • Loading branch information
c7hm4r committed May 17, 2020
1 parent 25c6015 commit ff5369a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/LockFreeDoublyLinkedList.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
<Product>Lock free doubly linked list</Product>
<PackageId>LockFreeDoublyLinkedList</PackageId>
<Description>A lock free doubly linked list for high concurrency.</Description>
<Version>4.0.0.0</Version>
<Version>4.0.0.1</Version>
<Authors>Christoph Müller ([email protected])</Authors>
<Company>Christoph Müller ([email protected])</Company>
<Copyright>Copyright © Christoph Müller 2018–2020</Copyright>
<NeutralLanguage>en</NeutralLanguage>
<IncludeSymbols>true</IncludeSymbols>
<PackageProjectUrl>https://github.com/c7hm4r/LockFreeDoublyLinkedList</PackageProjectUrl>
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0.html</PackageLicenseUrl>
<License>Apache-2.0</License>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageTags>lock-free thread-safe linked list concurrency</PackageTags>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
Expand All @@ -24,6 +25,8 @@
<DefineConstants>TRACE;DEBUG;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants></DefineConstants>
Expand All @@ -38,5 +41,6 @@
<Compile Include="LockFreeDoublyLinkedList.cs" />
<Compile Include="LockFreeDoublyLinkedListAdditions.cs" />
<Compile Include="ThreadingAdditions.cs" />
<None Include="..\LICENSE.txt" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>

0 comments on commit ff5369a

Please sign in to comment.