-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTableStorage.Memory.csproj
More file actions
28 lines (23 loc) · 1.11 KB
/
TableStorage.Memory.csproj
File metadata and controls
28 lines (23 loc) · 1.11 KB
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
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Devlooped.TableStorage.Memory</AssemblyName>
<TargetFramework>netstandard2.0</TargetFramework>
<IsPackable>true</IsPackable>
<Description>In-memory implementations for easy testing of Azure/CosmosDB Table Storage</Description>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\TableStorage\ExpressionExtensions.cs" Link="ExpressionExtensions.cs" />
<Compile Include="..\TableStorage\NonMutatingAttribute.cs" Link="NonMutatingAttribute.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="NuGetizer" Version="1.2.4" />
<PackageReference Include="PolySharp" Version="1.15.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.1" />
<PackageReference Include="Mono.Linq.Expressions" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TableStorage\TableStorage.csproj" />
</ItemGroup>
</Project>