Upload project.

This commit is contained in:
Stedos
2020-06-26 13:56:07 +01:00
parent 1e3503a70f
commit d5c5de41ca
14 changed files with 469 additions and 0 deletions

12
Technical-Test/Program.cs Normal file
View File

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

View File

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