Projekt erstellt

This commit is contained in:
NBTEMP\bib
2026-06-03 11:18:59 +02:00
parent 678897964f
commit 7adc696958
2 changed files with 20 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
+10
View File
@@ -0,0 +1,10 @@
namespace Chefs
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
}