changed solution path structure
All checks were successful
csharp-secdevops-pipeline-pod/pipeline/head This commit looks good
All checks were successful
csharp-secdevops-pipeline-pod/pipeline/head This commit looks good
This commit is contained in:
10
MyHelloWorld/HelloGenerator.cs
Normal file
10
MyHelloWorld/HelloGenerator.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace MyHelloWorld
|
||||
{
|
||||
public class HelloGenerator
|
||||
{
|
||||
public string GetGreeting()
|
||||
{
|
||||
return "Hello World";
|
||||
}
|
||||
}
|
||||
}
|
||||
6
MyHelloWorld/Program.cs
Normal file
6
MyHelloWorld/Program.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
using MyHelloWorld;
|
||||
|
||||
var generator = new HelloGenerator();
|
||||
string message = generator.GetGreeting();
|
||||
|
||||
Console.WriteLine(message);
|
||||
10
MyHelloWorld/SecDevOpsLab.csproj
Normal file
10
MyHelloWorld/SecDevOpsLab.csproj
Normal file
@@ -0,0 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user