From 84e6a91dc4e127912bd2ea567addaed45fa5d0f3 Mon Sep 17 00:00:00 2001 From: Elias Stepanik <40958815+eliasstepanik@users.noreply.github.com> Date: Thu, 18 Nov 2021 22:36:09 +0100 Subject: [PATCH] Initial commit --- .gitignore | 5 +++++ NTOB.sln | 16 ++++++++++++++++ NTOB/NTOB.csproj | 8 ++++++++ NTOB/Program.cs | 12 ++++++++++++ NTOB/appsettings.json | 3 +++ NTOB/logic/BlazorPage.cs | 7 +++++++ global.json | 7 +++++++ 7 files changed, 58 insertions(+) create mode 100644 .gitignore create mode 100644 NTOB.sln create mode 100644 NTOB/NTOB.csproj create mode 100644 NTOB/Program.cs create mode 100644 NTOB/appsettings.json create mode 100644 NTOB/logic/BlazorPage.cs create mode 100644 global.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/NTOB.sln b/NTOB.sln new file mode 100644 index 0000000..ffec2f0 --- /dev/null +++ b/NTOB.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NTOB", "NTOB\NTOB.csproj", "{B79FD579-C53E-4B69-8A13-5FCCFF68836E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B79FD579-C53E-4B69-8A13-5FCCFF68836E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B79FD579-C53E-4B69-8A13-5FCCFF68836E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B79FD579-C53E-4B69-8A13-5FCCFF68836E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B79FD579-C53E-4B69-8A13-5FCCFF68836E}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/NTOB/NTOB.csproj b/NTOB/NTOB.csproj new file mode 100644 index 0000000..9590466 --- /dev/null +++ b/NTOB/NTOB.csproj @@ -0,0 +1,8 @@ + + + + Exe + net5.0 + + + diff --git a/NTOB/Program.cs b/NTOB/Program.cs new file mode 100644 index 0000000..84f0e37 --- /dev/null +++ b/NTOB/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace NTOB +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} \ No newline at end of file diff --git a/NTOB/appsettings.json b/NTOB/appsettings.json new file mode 100644 index 0000000..29091fa --- /dev/null +++ b/NTOB/appsettings.json @@ -0,0 +1,3 @@ +{ + +} \ No newline at end of file diff --git a/NTOB/logic/BlazorPage.cs b/NTOB/logic/BlazorPage.cs new file mode 100644 index 0000000..002322d --- /dev/null +++ b/NTOB/logic/BlazorPage.cs @@ -0,0 +1,7 @@ +namespace NTOB.logic +{ + public class BlazorPage + { + + } +} \ No newline at end of file diff --git a/global.json b/global.json new file mode 100644 index 0000000..4db6a48 --- /dev/null +++ b/global.json @@ -0,0 +1,7 @@ +{ + "sdk": { + "version": "5.0", + "rollForward": "latestMajor", + "allowPrerelease": false + } +} \ No newline at end of file