initial commit

This commit is contained in:
2024-11-27 20:44:34 +01:00
commit bbfabb2eee
25 changed files with 659 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
namespace project_name;
public class HelloWorldProvider
{
public string GetHelloWorld(string name = null)
{
if(string.IsNullOrEmpty(name))
{
return "Hello world!";
}
else
{
return $"Hello, {name}!";
}
}
}

1
project_name/VERSION Normal file
View File

@@ -0,0 +1 @@
0.1.0

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>