diff --git a/Chatbot.Application/Chatbot.Application.csproj b/Chatbot.Application/Chatbot.Application.csproj new file mode 100644 index 0000000..9f5c4f4 --- /dev/null +++ b/Chatbot.Application/Chatbot.Application.csproj @@ -0,0 +1,7 @@ + + + + netstandard2.0 + + + diff --git a/Chatbot.Application/Class1.cs b/Chatbot.Application/Class1.cs new file mode 100644 index 0000000..3133ea8 --- /dev/null +++ b/Chatbot.Application/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace Chatbot.Application +{ + public class Class1 + { + } +} diff --git a/Chatbot.Domain.Data/Chatbot.Domain.Data.csproj b/Chatbot.Domain.Data/Chatbot.Domain.Data.csproj new file mode 100644 index 0000000..9f5c4f4 --- /dev/null +++ b/Chatbot.Domain.Data/Chatbot.Domain.Data.csproj @@ -0,0 +1,7 @@ + + + + netstandard2.0 + + + diff --git a/Chatbot.Domain.Data/Class1.cs b/Chatbot.Domain.Data/Class1.cs new file mode 100644 index 0000000..96def15 --- /dev/null +++ b/Chatbot.Domain.Data/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace Chatbot.Domain.Data +{ + public class Class1 + { + } +} diff --git a/Chatbot.Domain/Chatbot.Domain.csproj b/Chatbot.Domain/Chatbot.Domain.csproj new file mode 100644 index 0000000..9f5c4f4 --- /dev/null +++ b/Chatbot.Domain/Chatbot.Domain.csproj @@ -0,0 +1,7 @@ + + + + netstandard2.0 + + + diff --git a/Chatbot.Domain/Class1.cs b/Chatbot.Domain/Class1.cs new file mode 100644 index 0000000..8a45aed --- /dev/null +++ b/Chatbot.Domain/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace Chatbot.Domain +{ + public class Class1 + { + } +} diff --git a/Chatbot.sln b/Chatbot.sln index decfdec..bb3dc6e 100644 --- a/Chatbot.sln +++ b/Chatbot.sln @@ -3,7 +3,21 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.30002.166 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Chatbot.Api", "Chatbot.Api\Chatbot.Api.csproj", "{E317DE66-9513-4666-ADCC-0B7D5B652378}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Chatbot.Api", "Chatbot.Api\Chatbot.Api.csproj", "{E317DE66-9513-4666-ADCC-0B7D5B652378}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C42EC299-F3D5-4326-A756-80F9FEF233D9}" + ProjectSection(SolutionItems) = preProject + .gitattributes = .gitattributes + .gitignore = .gitignore + dependencies.props = dependencies.props + Directory.Build.props = Directory.Build.props + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Chatbot.Application", "Chatbot.Application\Chatbot.Application.csproj", "{3759725E-8E75-44F4-86A3-34CC1EAC1D6C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Chatbot.Domain", "Chatbot.Domain\Chatbot.Domain.csproj", "{1FDA8402-A777-48AF-91A3-34B7D033A8A5}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Chatbot.Domain.Data", "Chatbot.Domain.Data\Chatbot.Domain.Data.csproj", "{999F5359-3CD8-4A0C-86B8-E3DC5421AA0C}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -15,6 +29,18 @@ Global {E317DE66-9513-4666-ADCC-0B7D5B652378}.Debug|Any CPU.Build.0 = Debug|Any CPU {E317DE66-9513-4666-ADCC-0B7D5B652378}.Release|Any CPU.ActiveCfg = Release|Any CPU {E317DE66-9513-4666-ADCC-0B7D5B652378}.Release|Any CPU.Build.0 = Release|Any CPU + {3759725E-8E75-44F4-86A3-34CC1EAC1D6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3759725E-8E75-44F4-86A3-34CC1EAC1D6C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3759725E-8E75-44F4-86A3-34CC1EAC1D6C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3759725E-8E75-44F4-86A3-34CC1EAC1D6C}.Release|Any CPU.Build.0 = Release|Any CPU + {1FDA8402-A777-48AF-91A3-34B7D033A8A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1FDA8402-A777-48AF-91A3-34B7D033A8A5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1FDA8402-A777-48AF-91A3-34B7D033A8A5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1FDA8402-A777-48AF-91A3-34B7D033A8A5}.Release|Any CPU.Build.0 = Release|Any CPU + {999F5359-3CD8-4A0C-86B8-E3DC5421AA0C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {999F5359-3CD8-4A0C-86B8-E3DC5421AA0C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {999F5359-3CD8-4A0C-86B8-E3DC5421AA0C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {999F5359-3CD8-4A0C-86B8-E3DC5421AA0C}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Directory.Build.props b/Directory.Build.props new file mode 100644 index 0000000..8f7340f --- /dev/null +++ b/Directory.Build.props @@ -0,0 +1,10 @@ + + + + 1.0.0.0 + Tudor Stanciu + STA + Chatbot + STA Chatbot + + \ No newline at end of file diff --git a/dependencies.props b/dependencies.props new file mode 100644 index 0000000..b606756 --- /dev/null +++ b/dependencies.props @@ -0,0 +1,14 @@ + + + 3.1.3 + 3.2.0 + 3.0.1 + 3.1.1 + 5.2.0 + 9.0.0 + 7.0.0 + 6.0.0 + 5.3.1 + 3.1.3 + + \ No newline at end of file