forked from dotnet/efcore
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEFCore.Specification.Tests.csproj
More file actions
30 lines (25 loc) · 1.11 KB
/
EFCore.Specification.Tests.csproj
File metadata and controls
30 lines (25 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
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Shared test suite for Entity Framework Core database providers.</Description>
<TargetFrameworks>$(StandardTestTfms)</TargetFrameworks>
<LangVersion>9.0</LangVersion>
<AssemblyName>Microsoft.EntityFrameworkCore.Specification.Tests</AssemblyName>
<RootNamespace>Microsoft.EntityFrameworkCore</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>true</IsPackable>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\src\Shared\*.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\EFCore\EFCore.csproj" />
<ProjectReference Include="..\..\src\EFCore.Proxies\EFCore.Proxies.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NetTopologySuite" Version="2.5.0" />
<PackageReference Include="xunit.assert" Version="$(XUnitVersion)" />
<PackageReference Include="xunit.core" Version="$(XUnitVersion)" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
</Project>