diff options
Diffstat (limited to 'Aggregator/Main')
-rw-r--r-- | Aggregator/Main/Main.csproj | 8 | ||||
-rw-r--r-- | Aggregator/Main/Program.cs | 12 |
2 files changed, 20 insertions, 0 deletions
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!");
+ }
+ }
+}
|