From 7adc69695890def8494eda16d22cf042dd7ab40d Mon Sep 17 00:00:00 2001 From: "NBTEMP\\bib" Date: Wed, 3 Jun 2026 11:18:59 +0200 Subject: [PATCH] Projekt erstellt --- Chefs/Chefs.csproj | 10 ++++++++++ Chefs/Program.cs | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 Chefs/Chefs.csproj create mode 100644 Chefs/Program.cs diff --git a/Chefs/Chefs.csproj b/Chefs/Chefs.csproj new file mode 100644 index 0000000..2150e37 --- /dev/null +++ b/Chefs/Chefs.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/Chefs/Program.cs b/Chefs/Program.cs new file mode 100644 index 0000000..f6e0997 --- /dev/null +++ b/Chefs/Program.cs @@ -0,0 +1,10 @@ +namespace Chefs +{ + internal class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello, World!"); + } + } +}