Added Project Files

This commit is contained in:
Andreas 2022-12-08 12:06:24 +01:00
parent 6e58262394
commit 59bfc8a050
3 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.32630.194
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OOP-Opdracht-CSharp-Alfa-2022", "OOP-Opdracht-CSharp-Alfa-2022\OOP-Opdracht-CSharp-Alfa-2022.csproj", "{0A81578D-D4A2-46F0-95C2-F806F97D50F4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0A81578D-D4A2-46F0-95C2-F806F97D50F4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0A81578D-D4A2-46F0-95C2-F806F97D50F4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0A81578D-D4A2-46F0-95C2-F806F97D50F4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0A81578D-D4A2-46F0-95C2-F806F97D50F4}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7513E92B-9185-4A55-9AA3-099BB61E3D55}
EndGlobalSection
EndGlobal

View File

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

View File

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