Skip to content

Commit

Permalink
(GH-7) Added testing console application
Browse files Browse the repository at this point in the history
- Which contains a nuspec file ready for testing Choco LSP
  • Loading branch information
gep13 committed Apr 5, 2019
1 parent e1729e1 commit ecfa78f
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/ConsoleApp1/ConsoleApp1.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28714.193
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp1", "ConsoleApp1\ConsoleApp1.csproj", "{03F373CB-C6C0-4FB1-8DB3-3051DCD1565A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{03F373CB-C6C0-4FB1-8DB3-3051DCD1565A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{03F373CB-C6C0-4FB1-8DB3-3051DCD1565A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{03F373CB-C6C0-4FB1-8DB3-3051DCD1565A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{03F373CB-C6C0-4FB1-8DB3-3051DCD1565A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {48C5B414-D96B-411F-8732-85117777C9A3}
EndGlobalSection
EndGlobal
8 changes: 8 additions & 0 deletions src/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>

</Project>
12 changes: 12 additions & 0 deletions src/ConsoleApp1/ConsoleApp1/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;

namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
1 change: 1 addition & 0 deletions src/ConsoleApp1/ConsoleApp1/test.foo
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sdfdsfsdf
1 change: 1 addition & 0 deletions src/ConsoleApp1/ConsoleApp1/test.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sdfvsdf

0 comments on commit ecfa78f

Please sign in to comment.