forked from zzzprojects/System.Linq.Dynamic.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntityFramework.DynamicLinq.Tests.csproj
More file actions
58 lines (52 loc) · 3.14 KB
/
EntityFramework.DynamicLinq.Tests.csproj
File metadata and controls
58 lines (52 loc) · 3.14 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Stef Heyenrath</Authors>
<TargetFramework>net461</TargetFramework>
<DefineConstants>EF</DefineConstants>
<AssemblyName>EntityFramework.DynamicLinq.Tests</AssemblyName>
<PackageId>EntityFramework.DynamicLinq.Tests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<ProjectGuid>{BF97CB1B-5043-4256-8F42-CF3A4F3863BE}</ProjectGuid>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\System.Linq.Dynamic.Core.Tests\QueryableTests.cs" />
<Compile Include="..\System.Linq.Dynamic.Core.Tests\QueryableTests.*.cs" />
<Compile Include="..\System.Linq.Dynamic.Core.Tests\EntitiesTests.cs" />
<Compile Include="..\System.Linq.Dynamic.Core.Tests\EntitiesTests.*.cs" />
<Compile Include="..\System.Linq.Dynamic.Core.Tests\Entities\*.cs" />
<Compile Include="..\System.Linq.Dynamic.Core.Tests\TestHelpers\*.cs" />
<Compile Include="..\System.Linq.Dynamic.Core.Tests\Helpers\*.cs" />
<Compile Include="..\System.Linq.Dynamic.Core.Tests\Helpers\*\*.cs" />
<Compile Include="..\System.Linq.Dynamic.Core.Tests\D*.cs" />
<!--<Compile Include="..\System.Linq.Dynamic.Core.Tests\Parser\*.cs" />-->
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\System.Linq.Dynamic.Core\System.Linq.Dynamic.Core.csproj" />
<ProjectReference Include="..\..\src\EntityFramework.DynamicLinq\EntityFramework.DynamicLinq.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
<PackageReference Include="MongoDB.Driver" Version="2.4.4" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Linq.PropertyTranslator.Core" Version="1.0.3" />
<PackageReference Include="QueryInterceptor.Core" Version="1.0.5" />
<PackageReference Include="EntityFramework" Version="6.2.0" />
<PackageReference Include="Microsoft.AspNet.Identity.EntityFramework" Version="2.2.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="NFluent" Version="2.7.0" />
<PackageReference Include="Moq" Version="4.13.1" />
<PackageReference Include="LinqKit.EntityFramework" Version="1.1.15" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
</Project>