Initial commit

This commit is contained in:
Elias Stepanik 2021-11-18 22:36:09 +01:00
commit 84e6a91dc4
7 changed files with 58 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/

16
NTOB.sln Normal file
View File

@ -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

8
NTOB/NTOB.csproj Normal file
View File

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

12
NTOB/Program.cs Normal file
View File

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

3
NTOB/appsettings.json Normal file
View File

@ -0,0 +1,3 @@
{
}

7
NTOB/logic/BlazorPage.cs Normal file
View File

@ -0,0 +1,7 @@
namespace NTOB.logic
{
public class BlazorPage
{
}
}

7
global.json Normal file
View File

@ -0,0 +1,7 @@
{
"sdk": {
"version": "5.0",
"rollForward": "latestMajor",
"allowPrerelease": false
}
}