Bootstrap the reactive sample app

This commit is contained in:
Artyom
2020-09-30 23:30:01 +03:00
parent 734fafb7dc
commit f6fa97a44c
3 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace ReactiveExample {
class Program {
static void Main (string [] args)
{
Console.WriteLine ("Hello World!");
}
}
}

View File

@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>