diff options
author | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-04 07:20:37 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-04 07:20:37 +0000 |
commit | b5c7288ab54bdfcd45cd934869cfc68a1de9b0bd (patch) | |
tree | 6dc67ca6179a1da0c7a6a9aa7969aaf68c5af4d6 | |
parent | 191eb317ab418e484c6e106a28092285a34ddd40 (diff) | |
download | newsaggregator-b5c7288ab54bdfcd45cd934869cfc68a1de9b0bd.tar.gz newsaggregator-b5c7288ab54bdfcd45cd934869cfc68a1de9b0bd.tar.bz2 newsaggregator-b5c7288ab54bdfcd45cd934869cfc68a1de9b0bd.zip |
Made new Console project to temporarily test and use services
-rw-r--r-- | Aggregator/Aggregator.sln | 6 | ||||
-rw-r--r-- | Aggregator/Main/Main.csproj | 8 | ||||
-rw-r--r-- | Aggregator/Main/Program.cs | 12 |
3 files changed, 26 insertions, 0 deletions
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 @@ +<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>netcoreapp2.1</TargetFramework>
+ </PropertyGroup>
+
+</Project>
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!");
+ }
+ }
+}
|