Initial commit

This commit is contained in:
Dimitar Byalkov
2021-03-06 10:22:15 +02:00
parent ca75194f46
commit 2ad3f91b8e
3 changed files with 45 additions and 0 deletions

View File

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

View File

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