-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathEFCore.SqlServer.FunctionalTests.csproj
More file actions
81 lines (73 loc) · 3.47 KB
/
EFCore.SqlServer.FunctionalTests.csproj
File metadata and controls
81 lines (73 loc) · 3.47 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
<AssemblyName>Microsoft.EntityFrameworkCore.SqlServer.FunctionalTests</AssemblyName>
<RootNamespace>Microsoft.EntityFrameworkCore</RootNamespace>
<PreserveCompilationContext>true</PreserveCompilationContext>
<ImplicitUsings>true</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Scaffolding\Baselines\**\*" />
</ItemGroup>
<ItemGroup>
<None Include="Scaffolding\Baselines\**\*" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Shared\ModuleInitializer.cs" Link="ModuleInitializer.cs" />
</ItemGroup>
<ItemGroup>
<Using Include="System.Data.Common" />
<Using Include="System.Diagnostics" />
<Using Include="System.Linq.Expressions" />
<Using Include="System.Reflection" />
<Using Include="System.Text" />
<Using Include="Microsoft.EntityFrameworkCore" />
<Using Include="Microsoft.EntityFrameworkCore.ChangeTracking" />
<Using Include="Microsoft.EntityFrameworkCore.Diagnostics" />
<Using Include="Microsoft.EntityFrameworkCore.Design" />
<Using Include="Microsoft.EntityFrameworkCore.Infrastructure" />
<Using Include="Microsoft.EntityFrameworkCore.Metadata" />
<Using Include="Microsoft.EntityFrameworkCore.Metadata.Builders" />
<Using Include="Microsoft.EntityFrameworkCore.Metadata.Conventions" />
<Using Include="Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure" />
<Using Include="Microsoft.EntityFrameworkCore.Migrations" />
<Using Include="Microsoft.EntityFrameworkCore.Migrations.Design" />
<Using Include="Microsoft.EntityFrameworkCore.Migrations.Operations" />
<Using Include="Microsoft.EntityFrameworkCore.Query" />
<Using Include="Microsoft.EntityFrameworkCore.Scaffolding" />
<Using Include="Microsoft.EntityFrameworkCore.Storage" />
<Using Include="Microsoft.EntityFrameworkCore.Storage.ValueConversion" />
<Using Include="Microsoft.EntityFrameworkCore.SqlServer" />
<Using Include="Microsoft.EntityFrameworkCore.TestUtilities" />
<Using Include="Microsoft.EntityFrameworkCore.Update" />
<Using Include="Microsoft.EntityFrameworkCore.Utilities" />
<Using Include="Microsoft.EntityFrameworkCore.ValueGeneration" />
<Using Include="Microsoft.Extensions.Logging" />
<Using Include="Microsoft.Extensions.DependencyInjection" />
<Using Include="Xunit" />
<Using Include="Xunit.Abstractions" />
</ItemGroup>
<ItemGroup>
<None Update="Northwind.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="SqlAzure\adventureworks.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Update\Issue29502.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="config.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\EFCore.SqlServer.NTS\EFCore.SqlServer.NTS.csproj" />
<ProjectReference Include="..\EFCore.Relational.Specification.Tests\EFCore.Relational.Specification.Tests.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
<PackageReference Include="Testcontainers.MsSql" />
</ItemGroup>
</Project>