initial project setup

This commit is contained in:
irongut
2021-04-11 20:16:19 +01:00
commit a6a80fd35f
4 changed files with 414 additions and 0 deletions
@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
</Project>
+12
View File
@@ -0,0 +1,12 @@
using System;
namespace CodeCoverageSummary
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}