initial commit

This commit is contained in:
surtur 2020-08-30 17:40:39 +02:00
commit 4b6b4e9383
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
4 changed files with 42 additions and 0 deletions

5
.gitignore vendored Normal file
View File

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

9
KRY-0x06-cli.csproj Normal file
View File

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

16
KRY-0x06-cli.sln Normal file
View File

@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KRY-0x06-cli", "KRY-0x06-cli.csproj", "{CE14870E-4637-4D65-916E-D9A9F55919CB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CE14870E-4637-4D65-916E-D9A9F55919CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CE14870E-4637-4D65-916E-D9A9F55919CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CE14870E-4637-4D65-916E-D9A9F55919CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CE14870E-4637-4D65-916E-D9A9F55919CB}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

12
Program.cs Normal file
View File

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