diff --git a/JenkinsDotNETTest.sln b/JenkinsDotNETTest.sln new file mode 100644 index 0000000..556a86f --- /dev/null +++ b/JenkinsDotNETTest.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30804.86 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "JenkinsDotNETTest", "JenkinsDotNETTest\JenkinsDotNETTest.vbproj", "{400F351D-551C-4A14-A7A0-5C0973F2EC0B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {400F351D-551C-4A14-A7A0-5C0973F2EC0B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {400F351D-551C-4A14-A7A0-5C0973F2EC0B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {400F351D-551C-4A14-A7A0-5C0973F2EC0B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {400F351D-551C-4A14-A7A0-5C0973F2EC0B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8981F36D-CD43-4F67-8F3F-6A199928F9FA} + EndGlobalSection +EndGlobal diff --git a/JenkinsDotNETTest/JenkinsDotNETTest.vbproj b/JenkinsDotNETTest/JenkinsDotNETTest.vbproj new file mode 100644 index 0000000..e37b3ea --- /dev/null +++ b/JenkinsDotNETTest/JenkinsDotNETTest.vbproj @@ -0,0 +1,9 @@ + + + + Exe + JenkinsDotNETTest + netcoreapp3.1 + + + diff --git a/JenkinsDotNETTest/Program.vb b/JenkinsDotNETTest/Program.vb new file mode 100644 index 0000000..46283ca --- /dev/null +++ b/JenkinsDotNETTest/Program.vb @@ -0,0 +1,7 @@ +Imports System + +Module Program + Sub Main(args As String()) + Console.WriteLine("Hello World!") + End Sub +End Module