You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
3.4 KiB
XML
66 lines
3.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>$(JetTestWindowsOnlyTargetFramework)</TargetFramework>
|
|
<Platforms>AnyCPU;x86;x64</Platforms>
|
|
<Nullable>disable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
|
|
<PackageReference Include="System.Data.Odbc" />
|
|
<PackageReference Include="System.Data.OleDb" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(LocalEFCoreRepository)' == ''">
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(LocalEFCoreRepository)' != ''">
|
|
<Reference Include="Microsoft.EntityFrameworkCore">
|
|
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational.Specification.Tests\Debug\$(EfCoreTestTargetFramework)\Microsoft.EntityFrameworkCore.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Microsoft.EntityFrameworkCore.Abstractions">
|
|
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational.Specification.Tests\Debug\$(EfCoreTestTargetFramework)\Microsoft.EntityFrameworkCore.Abstractions.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Microsoft.EntityFrameworkCore.Analyzers">
|
|
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational.Specification.Tests\Debug\$(EfCoreTestTargetFramework)\Microsoft.EntityFrameworkCore.Analyzers.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Microsoft.EntityFrameworkCore.Design">
|
|
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Design.Tests\Debug\$(EfCoreTestTargetFramework)\Microsoft.EntityFrameworkCore.Design.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Microsoft.EntityFrameworkCore.Proxies">
|
|
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational.Specification.Tests\Debug\$(EfCoreTestTargetFramework)\Microsoft.EntityFrameworkCore.Proxies.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Microsoft.EntityFrameworkCore.Relational">
|
|
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational.Specification.Tests\Debug\$(EfCoreTestTargetFramework)\Microsoft.EntityFrameworkCore.Relational.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Microsoft.EntityFrameworkCore.Relational.Specification.Tests">
|
|
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational.Specification.Tests\Debug\$(EfCoreTestTargetFramework)\Microsoft.EntityFrameworkCore.Relational.Specification.Tests.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Microsoft.EntityFrameworkCore.Specification.Tests">
|
|
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational.Specification.Tests\Debug\$(EfCoreTestTargetFramework)\Microsoft.EntityFrameworkCore.Specification.Tests.dll</HintPath>
|
|
</Reference>
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" />
|
|
<PackageReference Include="NetTopologySuite" />
|
|
<PackageReference Include="System.ComponentModel.TypeConverter" />
|
|
<PackageReference Include="Castle.Core" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\EFCore.Jet\EFCore.Jet.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Northwind.accdb">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|