diff --git a/Prog2WienkopSS2021.sln b/Prog2WienkopSS2021.sln index 7e72529a5eae05067c095b2b8e62fa90d66f7c66..0de3449f6de79e8e9afe0a0d2c7455f24e866413 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 0000000000000000000000000000000000000000..549eb202e539f8b5041a450240b2e5c8ef3e5049 --- /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 0000000000000000000000000000000000000000..c73e0d1692ab38cc8596bbd32ae080d903aaa778 --- /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>