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:
14
MyHelloWorld.sln
Normal file
14
MyHelloWorld.sln
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.0.31903.59
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
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);
|
||||
@@ -1,2 +0,0 @@
|
||||
// See https://aka.ms/new-console-template for more information
|
||||
Console.WriteLine("Hello, World!");
|
||||
@@ -1,24 +0,0 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.5.2.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SecDevOpsLab", "SecDevOpsLab.csproj", "{A4FDB203-53D0-5516-79C1-E707D5F161B2}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{A4FDB203-53D0-5516-79C1-E707D5F161B2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{A4FDB203-53D0-5516-79C1-E707D5F161B2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A4FDB203-53D0-5516-79C1-E707D5F161B2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A4FDB203-53D0-5516-79C1-E707D5F161B2}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {43585512-6807-4BA1-9246-270520F20783}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("SecDevOpsLab")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5215adf88ece518edb28e2cef4b51f7d748d6498")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a06ad295ff53ef3ef054f007568f9408d3ac3926")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("SecDevOpsLab")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("SecDevOpsLab")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
b5d49162f036157fe9f19403ac2d932a2c5ae01b3f0f407bf34e5a794b413b5c
|
||||
4c184d0afcea7e7f2eab2f0260a6f8caf058b8b036b468bd9db571ad88a567d6
|
||||
|
||||
Reference in New Issue
Block a user