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