hello world

This commit is contained in:
Christoph J. Scherr 2024-04-15 00:01:03 +02:00
parent 9e7500baff
commit 021f493ce1
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
bin/Debug/net8.0
obj

1
Program.cs Normal file
View File

@ -0,0 +1 @@
Console.WriteLine("foof");

11
cs-basic.csproj Normal file
View File

@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>cs_basic</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>