From 66fb666b859c9705208d90b36d58a2012e591c80 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sat, 2 Feb 2019 13:23:30 +0000 Subject: Added projects and solution for Aggregator --- Aggregator/Aggregator.sln | 31 +++++++++++++++++++++++++++++++ Aggregator/Classes/Class1.cs | 6 ++++++ Aggregator/Classes/Classes.csproj | 7 +++++++ Aggregator/Parser/Class1.cs | 6 ++++++ Aggregator/Parser/Parser.csproj | 7 +++++++ 5 files changed, 57 insertions(+) create mode 100644 Aggregator/Aggregator.sln create mode 100644 Aggregator/Classes/Class1.cs create mode 100644 Aggregator/Classes/Classes.csproj create mode 100644 Aggregator/Parser/Class1.cs create mode 100644 Aggregator/Parser/Parser.csproj (limited to 'Aggregator') diff --git a/Aggregator/Aggregator.sln b/Aggregator/Aggregator.sln new file mode 100644 index 0000000..66fb4f8 --- /dev/null +++ b/Aggregator/Aggregator.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.271 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parser", "Parser\Parser.csproj", "{CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Classes", "Classes\Classes.csproj", "{AB1F3DD4-1B23-427A-8F32-C11EC20A0815}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}.Release|Any CPU.Build.0 = Release|Any CPU + {AB1F3DD4-1B23-427A-8F32-C11EC20A0815}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AB1F3DD4-1B23-427A-8F32-C11EC20A0815}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AB1F3DD4-1B23-427A-8F32-C11EC20A0815}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AB1F3DD4-1B23-427A-8F32-C11EC20A0815}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {6AC8D5E7-2740-4651-87BF-1EE3BCBB3004} + EndGlobalSection +EndGlobal diff --git a/Aggregator/Classes/Class1.cs b/Aggregator/Classes/Class1.cs new file mode 100644 index 0000000..b122c6a --- /dev/null +++ b/Aggregator/Classes/Class1.cs @@ -0,0 +1,6 @@ +using System; + +namespace Classes { + public class Class1 { + } +} diff --git a/Aggregator/Classes/Classes.csproj b/Aggregator/Classes/Classes.csproj new file mode 100644 index 0000000..86ea3bb --- /dev/null +++ b/Aggregator/Classes/Classes.csproj @@ -0,0 +1,7 @@ + + + + netcoreapp2.1 + + + diff --git a/Aggregator/Parser/Class1.cs b/Aggregator/Parser/Class1.cs new file mode 100644 index 0000000..635f2eb --- /dev/null +++ b/Aggregator/Parser/Class1.cs @@ -0,0 +1,6 @@ +using System; + +namespace Parser { + public class Class1 { + } +} diff --git a/Aggregator/Parser/Parser.csproj b/Aggregator/Parser/Parser.csproj new file mode 100644 index 0000000..86ea3bb --- /dev/null +++ b/Aggregator/Parser/Parser.csproj @@ -0,0 +1,7 @@ + + + + netcoreapp2.1 + + + -- cgit v1.2.3-13-gbd6f