Add project files.

This commit is contained in:
2021-01-05 22:43:51 +01:00
parent 82b586d93b
commit 2f72656209
3 changed files with 41 additions and 0 deletions

25
JenkinsDotNETTest.sln Normal file
View File

@@ -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

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>JenkinsDotNETTest</RootNamespace>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,7 @@
Imports System
Module Program
Sub Main(args As String())
Console.WriteLine("Hello World!")
End Sub
End Module