Ready to clone and code.

This commit is contained in:
simon
2024-12-02 11:20:24 +00:00
committed by github-actions[bot]
parent 4c054008f7
commit d2b1d4bcfa
18 changed files with 27 additions and 118 deletions

View File

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

View File

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

View File

@@ -0,0 +1 @@
0.1.1