This commit is contained in:
xiaolipro 2024-03-07 21:15:12 +08:00
parent 4d8900be21
commit 08e7ece1b6
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../../common.props" />
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Fake.EntityFrameworkCore" Version="8.0.0-preview.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\InterfaceForward.Domain\InterfaceForward.Domain.csproj" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,9 @@
using Fake.EntityFrameworkCore;
using Fake.Modularity;
namespace InterfaceForward.Infrastructure;
[DependsOn(typeof(FakeEntityFrameworkCoreModule))]
public class InterfaceForwardInfrastructureModule:FakeModule
{
}