-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSetAssociativeCache.csproj
More file actions
27 lines (23 loc) · 978 Bytes
/
Copy pathSetAssociativeCache.csproj
File metadata and controls
27 lines (23 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>ParksComputing.SetAssociativeCache</AssemblyName>
<RootNamespace>ParksComputing.SetAssociativeCache</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Remove="SetAssociativeCacheSample\**" />
<Compile Remove="SetAssociativeCacheTester\**" />
<Compile Remove="SetAssociativeCacheTests\**" />
<EmbeddedResource Remove="SetAssociativeCacheSample\**" />
<EmbeddedResource Remove="SetAssociativeCacheTester\**" />
<EmbeddedResource Remove="SetAssociativeCacheTests\**" />
<None Remove="SetAssociativeCacheSample\**" />
<None Remove="SetAssociativeCacheTester\**" />
<None Remove="SetAssociativeCacheTests\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="CacheImplLinkedListBase.cs" />
<Compile Remove="LruLinkedListCache.cs" />
<Compile Remove="XruLinkedListCache.cs" />
</ItemGroup>
</Project>