Skip to content

Commit ecfa78f

Browse files
committed
(GH-7) Added testing console application
- Which contains a nuspec file ready for testing Choco LSP
1 parent e1729e1 commit ecfa78f

File tree

5 files changed

+47
-0
lines changed

5 files changed

+47
-0
lines changed

src/ConsoleApp1/ConsoleApp1.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.28714.193
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp1", "ConsoleApp1\ConsoleApp1.csproj", "{03F373CB-C6C0-4FB1-8DB3-3051DCD1565A}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{03F373CB-C6C0-4FB1-8DB3-3051DCD1565A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{03F373CB-C6C0-4FB1-8DB3-3051DCD1565A}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{03F373CB-C6C0-4FB1-8DB3-3051DCD1565A}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{03F373CB-C6C0-4FB1-8DB3-3051DCD1565A}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {48C5B414-D96B-411F-8732-85117777C9A3}
24+
EndGlobalSection
25+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp2.1</TargetFramework>
6+
</PropertyGroup>
7+
8+
</Project>
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
3+
namespace ConsoleApp1
4+
{
5+
class Program
6+
{
7+
static void Main(string[] args)
8+
{
9+
Console.WriteLine("Hello World!");
10+
}
11+
}
12+
}

src/ConsoleApp1/ConsoleApp1/test.foo

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sdfdsfsdf
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sdfvsdf

0 commit comments

Comments
 (0)