created blank code

This commit is contained in:
Sean Lynch
2022-05-14 17:05:23 -04:00
parent 1b1eeb7c18
commit 1a08141c1a
2 changed files with 22 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>