✅ Ready to clone and code.
This commit is contained in:
committed by
github-actions[bot]
parent
4c054008f7
commit
d2b1d4bcfa
16
LevelInputProvider/HelloWorldProvider.cs
Normal file
16
LevelInputProvider/HelloWorldProvider.cs
Normal 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}!";
|
||||
}
|
||||
}
|
||||
}
|
||||
9
LevelInputProvider/LevelInputProvider.csproj
Normal file
9
LevelInputProvider/LevelInputProvider.csproj
Normal file
@@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
1
LevelInputProvider/VERSION
Normal file
1
LevelInputProvider/VERSION
Normal file
@@ -0,0 +1 @@
|
||||
0.1.1
|
||||
Reference in New Issue
Block a user