From 08e7ece1b6c9c0dcc3fd31c8eaaa8f1385d27d05 Mon Sep 17 00:00:00 2001 From: xiaolipro <2357729423@qq.com> Date: Thu, 7 Mar 2024 21:15:12 +0800 Subject: [PATCH] 1 --- .../InterfaceForward.Infrastructure.csproj | 17 +++++++++++++++++ .../InterfaceForwardInfrastructureModule.cs | 9 +++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/InterfaceForward.Infrastructure/InterfaceForward.Infrastructure.csproj create mode 100644 src/InterfaceForward.Infrastructure/InterfaceForwardInfrastructureModule.cs diff --git a/src/InterfaceForward.Infrastructure/InterfaceForward.Infrastructure.csproj b/src/InterfaceForward.Infrastructure/InterfaceForward.Infrastructure.csproj new file mode 100644 index 0000000..b330ac3 --- /dev/null +++ b/src/InterfaceForward.Infrastructure/InterfaceForward.Infrastructure.csproj @@ -0,0 +1,17 @@ + + + + + + net8.0 + + + + + + + + + + + diff --git a/src/InterfaceForward.Infrastructure/InterfaceForwardInfrastructureModule.cs b/src/InterfaceForward.Infrastructure/InterfaceForwardInfrastructureModule.cs new file mode 100644 index 0000000..3367908 --- /dev/null +++ b/src/InterfaceForward.Infrastructure/InterfaceForwardInfrastructureModule.cs @@ -0,0 +1,9 @@ +using Fake.EntityFrameworkCore; +using Fake.Modularity; + +namespace InterfaceForward.Infrastructure; + +[DependsOn(typeof(FakeEntityFrameworkCoreModule))] +public class InterfaceForwardInfrastructureModule:FakeModule +{ +} \ No newline at end of file