Files
secdevops-csharp-app/MyHelloWorld/HelloGenerator.cs
Achim H. b1fbc831a7
All checks were successful
csharp-secdevops-pipeline-pod/pipeline/head This commit looks good
changed solution path structure
2026-05-04 19:23:56 +02:00

10 lines
160 B
C#

namespace MyHelloWorld
{
public class HelloGenerator
{
public string GetGreeting()
{
return "Hello World";
}
}
}