Skip to content

Commit

Permalink
Explicitly include source files
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Müller committed Apr 30, 2018
1 parent ed3eb29 commit ef1c650
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/LockFreeDoublyLinkedList.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0.html
</PackageLicenseUrl>
<PackageTags>lock-free thread-safe linked list concurrency</PackageTags>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -31,4 +32,12 @@
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\LockFreeDoublyLinkedList.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="Counter.cs" />
<Compile Include="ILockFreeDoublyLinkedList.cs" />
<Compile Include="ILockFreeDoublyLinkedListNode.cs" />
<Compile Include="LockFreeDoublyLinkedList.cs" />
<Compile Include="LockFreeDoublyLinkedListAdditions.cs" />
<Compile Include="ThreadingAdditions.cs" />
</ItemGroup>
</Project>

0 comments on commit ef1c650

Please sign in to comment.