From 174c81147a3c3dbb3ae3462bb79874a52efba274 Mon Sep 17 00:00:00 2001 From: wienkop <uwe.wienkop@th-nuernberg.de> Date: Sat, 13 Mar 2021 14:43:00 +0100 Subject: [PATCH] Willkommen --- Prog2WienkopSS2021.sln | 10 +++++----- Welcome/Program.cs | 12 ++++++++++++ Welcome/Welcome.csproj | 8 ++++++++ 3 files changed, 25 insertions(+), 5 deletions(-) create mode 100644 Welcome/Program.cs create mode 100644 Welcome/Welcome.csproj diff --git a/Prog2WienkopSS2021.sln b/Prog2WienkopSS2021.sln index 7e72529..0de3449 100644 --- a/Prog2WienkopSS2021.sln +++ b/Prog2WienkopSS2021.sln @@ -3,7 +3,7 @@ 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}") = "Prog2WienkopSS2021", "Prog2WienkopSS2021.csproj", "{26620748-9774-45A3-85EB-8315CB6C739C}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Welcome", "Welcome\Welcome.csproj", "{3FD26F99-6873-40BD-BA2B-14FD0608FA12}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,10 +11,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {26620748-9774-45A3-85EB-8315CB6C739C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {26620748-9774-45A3-85EB-8315CB6C739C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {26620748-9774-45A3-85EB-8315CB6C739C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {26620748-9774-45A3-85EB-8315CB6C739C}.Release|Any CPU.Build.0 = Release|Any CPU + {3FD26F99-6873-40BD-BA2B-14FD0608FA12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3FD26F99-6873-40BD-BA2B-14FD0608FA12}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3FD26F99-6873-40BD-BA2B-14FD0608FA12}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3FD26F99-6873-40BD-BA2B-14FD0608FA12}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Welcome/Program.cs b/Welcome/Program.cs new file mode 100644 index 0000000..549eb20 --- /dev/null +++ b/Welcome/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace Welcome +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/Welcome/Welcome.csproj b/Welcome/Welcome.csproj new file mode 100644 index 0000000..c73e0d1 --- /dev/null +++ b/Welcome/Welcome.csproj @@ -0,0 +1,8 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <OutputType>Exe</OutputType> + <TargetFramework>netcoreapp3.1</TargetFramework> + </PropertyGroup> + +</Project> -- GitLab