-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathSampleDebugAdapter.csproj
More file actions
64 lines (64 loc) · 3.29 KB
/
Copy pathSampleDebugAdapter.csproj
File metadata and controls
64 lines (64 loc) · 3.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\build\targets\Microsoft.VisualStudio.Debugger.VSCodeDebugAdapterHost.CSharp.Settings.targets" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{E1EC6099-65DC-41BB-AE01-5D5E39CB3807}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SampleDebugAdapter</RootNamespace>
<AssemblyName>SampleDebugAdapter</AssemblyName>
<SignOutput>false</SignOutput>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<UseVSHostingProcess>false</UseVSHostingProcess>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.VisualStudio.Shared.VSCodeDebugProtocol, Version=15.6.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>$(NugetPackageRoot)Microsoft.VisualStudio.Shared.VsCodeDebugProtocol.15.6.20118.1\lib\net45\Microsoft.VisualStudio.Shared.VSCodeDebugProtocol.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>$(NugetPackageRoot)Newtonsoft.Json.13.0.0\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Ookii.CommandLine, Version=2.2.0.0, Culture=neutral, PublicKeyToken=0c15020868fd6249, processorArchitecture=MSIL">
<HintPath>$(NugetPackageRoot)Ookii.CommandLine.2.2\lib\Ookii.CommandLine.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="BreakpointManager.cs" />
<Compile Include="Directives\DirectiveBase.cs" />
<Compile Include="Directives\DirectiveProcessor.cs" />
<Compile Include="Directives\IDirective.cs" />
<Compile Include="ExceptionManager.cs" />
<Compile Include="ISampleVariableContainer.cs" />
<Compile Include="SampleModule.cs" />
<Compile Include="ModuleManager.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SampleDebugAdapter.cs" />
<Compile Include="SampleObject.cs" />
<Compile Include="SampleScope.cs" />
<Compile Include="SampleSource.cs" />
<Compile Include="SampleSourceManager.cs" />
<Compile Include="SampleStackFrame.cs" />
<Compile Include="SampleThread.cs" />
<Compile Include="SampleVariable.cs" />
<Compile Include="ThreadManager.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(TargetsDir)\Microsoft.VisualStudio.Debugger.VSCodeDebugAdapterHost.CSharp.targets" />
</Project>