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.
22 lines
808 B
XML
22 lines
808 B
XML
|
2 years ago
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<Platforms>AnyCPU;x86</Platforms>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup Condition="'$(LocalEFCoreRepository)' == ''">
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" />
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.0">
|
||
|
|
<PrivateAssets>all</PrivateAssets>
|
||
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
|
</PackageReference>
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational.Specification.Tests" Version="7.0.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\..\src\EFCore.Jet\EFCore.Jet.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|