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
+25
View File
@@ -0,0 +1,25 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31105.61
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeCoverageSummary", "CodeCoverageSummary\CodeCoverageSummary.csproj", "{D1AE3E84-4DB4-46E0-9DC8-CA387656E68E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D1AE3E84-4DB4-46E0-9DC8-CA387656E68E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D1AE3E84-4DB4-46E0-9DC8-CA387656E68E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D1AE3E84-4DB4-46E0-9DC8-CA387656E68E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D1AE3E84-4DB4-46E0-9DC8-CA387656E68E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A3BA648A-1C3D-4D39-8BF8-77FA7C2C38CE}
EndGlobalSection
EndGlobal
@@ -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!");
}
}
}