Skip to content
Snippets Groups Projects
Commit 174c8114 authored by Uwe Wienkop's avatar Uwe Wienkop
Browse files

Willkommen

parent 2da181ab
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 ...@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16 # Visual Studio Version 16
VisualStudioVersion = 16.0.31105.61 VisualStudioVersion = 16.0.31105.61
MinimumVisualStudioVersion = 10.0.40219.1 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 EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
...@@ -11,10 +11,10 @@ Global ...@@ -11,10 +11,10 @@ Global
Release|Any CPU = Release|Any CPU Release|Any CPU = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution GlobalSection(ProjectConfigurationPlatforms) = postSolution
{26620748-9774-45A3-85EB-8315CB6C739C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {3FD26F99-6873-40BD-BA2B-14FD0608FA12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{26620748-9774-45A3-85EB-8315CB6C739C}.Debug|Any CPU.Build.0 = Debug|Any CPU {3FD26F99-6873-40BD-BA2B-14FD0608FA12}.Debug|Any CPU.Build.0 = Debug|Any CPU
{26620748-9774-45A3-85EB-8315CB6C739C}.Release|Any CPU.ActiveCfg = Release|Any CPU {3FD26F99-6873-40BD-BA2B-14FD0608FA12}.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}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
......
using System;
namespace Welcome
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment