diff --git a/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022.sln b/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022.sln new file mode 100644 index 0000000..f8f054e --- /dev/null +++ b/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022.sln @@ -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 diff --git a/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022.csproj b/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022.csproj new file mode 100644 index 0000000..a71954c --- /dev/null +++ b/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022.csproj @@ -0,0 +1,9 @@ + + + + Exe + netcoreapp3.1 + OOP_Opdracht_CSharp_Alfa_2022 + + + diff --git a/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/Program.cs b/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/Program.cs new file mode 100644 index 0000000..c49de90 --- /dev/null +++ b/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace OOP_Opdracht_CSharp_Alfa_2022 +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +}