From b5c7288ab54bdfcd45cd934869cfc68a1de9b0bd Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 4 Feb 2019 07:20:37 +0000 Subject: Made new Console project to temporarily test and use services --- Aggregator/Aggregator.sln | 6 ++++++ Aggregator/Main/Main.csproj | 8 ++++++++ Aggregator/Main/Program.cs | 12 ++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 Aggregator/Main/Main.csproj create mode 100644 Aggregator/Main/Program.cs diff --git a/Aggregator/Aggregator.sln b/Aggregator/Aggregator.sln index 3449b02..ecc0ea3 100644 --- a/Aggregator/Aggregator.sln +++ b/Aggregator/Aggregator.sln @@ -9,6 +9,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Classes", "Classes\Classes. EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{E9ED051D-909D-464F-99E2-5BA57BD06D00}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Main", "Main\Main.csproj", "{351B47B8-C766-43BD-AF1C-C281B0FD99E7}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -27,6 +29,10 @@ Global {E9ED051D-909D-464F-99E2-5BA57BD06D00}.Debug|Any CPU.Build.0 = Debug|Any CPU {E9ED051D-909D-464F-99E2-5BA57BD06D00}.Release|Any CPU.ActiveCfg = Release|Any CPU {E9ED051D-909D-464F-99E2-5BA57BD06D00}.Release|Any CPU.Build.0 = Release|Any CPU + {351B47B8-C766-43BD-AF1C-C281B0FD99E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {351B47B8-C766-43BD-AF1C-C281B0FD99E7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {351B47B8-C766-43BD-AF1C-C281B0FD99E7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {351B47B8-C766-43BD-AF1C-C281B0FD99E7}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Aggregator/Main/Main.csproj b/Aggregator/Main/Main.csproj new file mode 100644 index 0000000..e5e0e16 --- /dev/null +++ b/Aggregator/Main/Main.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp2.1 + + + diff --git a/Aggregator/Main/Program.cs b/Aggregator/Main/Program.cs new file mode 100644 index 0000000..a9c5ed6 --- /dev/null +++ b/Aggregator/Main/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace Main +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} -- cgit v1.2.3-13-gbd6f