2023-05-12 09:25:19 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
2023-07-06 07:51:49 +02:00
|
|
|
<Title>Umbraco CMS - Persistence - Entity Framework Core</Title>
|
|
|
|
|
<Description>Adds support for Entity Framework Core to Umbraco CMS.</Description>
|
2023-05-12 09:25:19 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-10-26 09:01:29 +02:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0-rc.2.*" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0-rc.2.*" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0-rc.2.*"/>
|
|
|
|
|
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="4.9.0" />
|
2023-05-12 09:25:19 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Umbraco.Core\Umbraco.Core.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Umbraco.Tests.Integration</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|