hello world
This commit is contained in:
parent
9e7500baff
commit
021f493ce1
3 changed files with 14 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
bin/Debug/net8.0
|
||||
obj
|
1
Program.cs
Normal file
1
Program.cs
Normal file
|
@ -0,0 +1 @@
|
|||
Console.WriteLine("foof");
|
11
cs-basic.csproj
Normal file
11
cs-basic.csproj
Normal 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>
|
Loading…
Add table
Reference in a new issue