From a6c5c7c15962f7502e0851e526c5bad611d39e68 Mon Sep 17 00:00:00 2001
From: xiaolipro <2357729423@qq.com>
Date: Wed, 15 May 2024 21:27:52 +0800
Subject: [PATCH] 1
---
global.json | 5 +++++
...InterfaceForward.Application.Contracts.csproj | 16 ++++++++++++++++
...InterfaceForwardApplicationContractsModule.cs | 10 ++++++++++
.../InterfaceForward.Domain.Shared.csproj | 13 +++++++++++++
.../InterfaceForwardDomainSharedModule.cs | 8 ++++++++
5 files changed, 52 insertions(+)
create mode 100644 global.json
create mode 100644 src/InterfaceForward.Application.Contracts/InterfaceForward.Application.Contracts.csproj
create mode 100644 src/InterfaceForward.Application.Contracts/InterfaceForwardApplicationContractsModule.cs
create mode 100644 src/InterfaceForward.Domain.Shared/InterfaceForward.Domain.Shared.csproj
create mode 100644 src/InterfaceForward.Domain.Shared/InterfaceForwardDomainSharedModule.cs
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