aboutsummaryrefslogtreecommitdiff
path: root/Aggregator
diff options
context:
space:
mode:
Diffstat (limited to 'Aggregator')
-rw-r--r--Aggregator/Aggregator.sln6
-rw-r--r--Aggregator/Main/Main.csproj8
-rw-r--r--Aggregator/Main/Program.cs12
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!");
+ }
+ }
+}