From f6fa97a44c8dea81c0421714f9fc02c4913cfe5d Mon Sep 17 00:00:00 2001 From: Artyom Date: Wed, 30 Sep 2020 23:30:01 +0300 Subject: [PATCH] Bootstrap the reactive sample app --- ReactiveExample/Program.cs | 10 ++++++++++ ReactiveExample/ReactiveExample.csproj | 8 ++++++++ Terminal.sln | 10 ++++++++++ 3 files changed, 28 insertions(+) create mode 100644 ReactiveExample/Program.cs create mode 100644 ReactiveExample/ReactiveExample.csproj diff --git a/ReactiveExample/Program.cs b/ReactiveExample/Program.cs new file mode 100644 index 000000000..71689ef3e --- /dev/null +++ b/ReactiveExample/Program.cs @@ -0,0 +1,10 @@ +using System; + +namespace ReactiveExample { + class Program { + static void Main (string [] args) + { + Console.WriteLine ("Hello World!"); + } + } +} \ No newline at end of file diff --git a/ReactiveExample/ReactiveExample.csproj b/ReactiveExample/ReactiveExample.csproj new file mode 100644 index 000000000..2c0dacc01 --- /dev/null +++ b/ReactiveExample/ReactiveExample.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp3.1 + + + diff --git a/Terminal.sln b/Terminal.sln index 60f459e4b..d7cf15d87 100644 --- a/Terminal.sln +++ b/Terminal.sln @@ -12,6 +12,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UICatalog", "UICatalog\UICa EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests", "UnitTests\UnitTests.csproj", "{8B901EDE-8974-4820-B100-5226917E2990}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReactiveExample", "ReactiveExample\ReactiveExample.csproj", "{44E15B48-0DB2-4560-82BD-D3B7989811C3}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -60,6 +62,14 @@ Global {8B901EDE-8974-4820-B100-5226917E2990}.Release|Any CPU.Build.0 = Release|Any CPU {8B901EDE-8974-4820-B100-5226917E2990}.Release|x86.ActiveCfg = Release|Any CPU {8B901EDE-8974-4820-B100-5226917E2990}.Release|x86.Build.0 = Release|Any CPU + {44E15B48-0DB2-4560-82BD-D3B7989811C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {44E15B48-0DB2-4560-82BD-D3B7989811C3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {44E15B48-0DB2-4560-82BD-D3B7989811C3}.Debug|x86.ActiveCfg = Debug|Any CPU + {44E15B48-0DB2-4560-82BD-D3B7989811C3}.Debug|x86.Build.0 = Debug|Any CPU + {44E15B48-0DB2-4560-82BD-D3B7989811C3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {44E15B48-0DB2-4560-82BD-D3B7989811C3}.Release|Any CPU.Build.0 = Release|Any CPU + {44E15B48-0DB2-4560-82BD-D3B7989811C3}.Release|x86.ActiveCfg = Release|Any CPU + {44E15B48-0DB2-4560-82BD-D3B7989811C3}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE