diff --git a/global.json b/global.json new file mode 100644 index 0000000..f3365c4 --- /dev/null +++ b/global.json @@ -0,0 +1,5 @@ +{ + "sdk": { + "version": "8.0.100" + } +} \ No newline at end of file diff --git a/src/InterfaceForward.Application.Contracts/InterfaceForward.Application.Contracts.csproj b/src/InterfaceForward.Application.Contracts/InterfaceForward.Application.Contracts.csproj new file mode 100644 index 0000000..1b93815 --- /dev/null +++ b/src/InterfaceForward.Application.Contracts/InterfaceForward.Application.Contracts.csproj @@ -0,0 +1,16 @@ + + + + + + netstandard2.1 + + + + + + + + + + diff --git a/src/InterfaceForward.Application.Contracts/InterfaceForwardApplicationContractsModule.cs b/src/InterfaceForward.Application.Contracts/InterfaceForwardApplicationContractsModule.cs new file mode 100644 index 0000000..debaca2 --- /dev/null +++ b/src/InterfaceForward.Application.Contracts/InterfaceForwardApplicationContractsModule.cs @@ -0,0 +1,10 @@ + + +using Fake.Modularity; + +namespace InterfaceForward.Application.Contracts +{ + public class InterfaceForwardApplicationContractsModule:FakeModule + { + } +} \ No newline at end of file diff --git a/src/InterfaceForward.Domain.Shared/InterfaceForward.Domain.Shared.csproj b/src/InterfaceForward.Domain.Shared/InterfaceForward.Domain.Shared.csproj new file mode 100644 index 0000000..4ce2d94 --- /dev/null +++ b/src/InterfaceForward.Domain.Shared/InterfaceForward.Domain.Shared.csproj @@ -0,0 +1,13 @@ + + + + netstandard2.1 + + + + + + + + + diff --git a/src/InterfaceForward.Domain.Shared/InterfaceForwardDomainSharedModule.cs b/src/InterfaceForward.Domain.Shared/InterfaceForwardDomainSharedModule.cs new file mode 100644 index 0000000..6f3e29f --- /dev/null +++ b/src/InterfaceForward.Domain.Shared/InterfaceForwardDomainSharedModule.cs @@ -0,0 +1,8 @@ +using Fake.Modularity; + +namespace InterfaceForward.Domain.Shared +{ + public class InterfaceForwardDomainSharedModule:FakeModule + { + } +} \ No newline at end of file