-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathSampleDebugAdapter.VSIX.csproj
More file actions
84 lines (84 loc) · 4.95 KB
/
Copy pathSampleDebugAdapter.VSIX.csproj
File metadata and controls
84 lines (84 loc) · 4.95 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
</PropertyGroup>
<Import Project="..\..\..\build\targets\Microsoft.VisualStudio.Debugger.VSCodeDebugAdapterHost.CSharp.Settings.targets" />
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
<ProjectTypeGuids>{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ProjectGuid>{615ABA92-FE5D-4EC3-BE21-75238EB04109}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>SampleDebugAdapter.VSIX</RootNamespace>
<AssemblyName>SampleDebugAdapter.VSIX</AssemblyName>
<GeneratePkgDefFile>false</GeneratePkgDefFile>
<IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer>
<IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer>
<IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment>
<CopyBuildOutputToOutputDirectory>false</CopyBuildOutputToOutputDirectory>
<CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
<ImportVSSDKTargets>true</ImportVSSDKTargets>
<RunCodeAnalysis>false</RunCodeAnalysis>
<SignOutput>false</SignOutput>
</PropertyGroup>
<PropertyGroup>
<StartAction>Program</StartAction>
<StartProgram Condition="'$(DevEnvDir)' != ''">$(DevEnvDir)devenv.exe</StartProgram>
<StartArguments>/rootsuffix Exp</StartArguments>
</PropertyGroup>
<ItemGroup>
<None Include="packages.config">
<SubType>Designer</SubType>
</None>
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.VisualStudio.Debugger.DebugAdapterHost.Interfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>$(NugetPackageRoot)Microsoft.VisualStudio.Debugger.DebugAdapterHost.Interfaces.15.6.20118.1\lib\net45\Microsoft.VisualStudio.Debugger.DebugAdapterHost.Interfaces.dll</HintPath>
<Private>False</Private>
</Reference>
<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>
<Private>False</Private>
</Reference>
<ProjectReference Include="..\SampleDebugAdapter\SampleDebugAdapter.csproj">
<Project>{E1EC6099-65DC-41BB-AE01-5D5E39CB3807}</Project>
<Name>SampleDebugAdapter</Name>
<IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup%3bBuiltProjectOutputGroupDependencies%3bGetCopyToOutputDirectoryItems%3bSatelliteDllsProjectOutputGroup%3b</IncludeOutputGroupsInVSIX>
<IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup%3b</IncludeOutputGroupsInVSIXLocalOnly>
<VSIXSubPath>adapter</VSIXSubPath>
</ProjectReference>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>$(NugetPackageRoot)Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
<!-- JSON.Net is normally excluded from packaging in VSIXes because the VS assembly resolver will
redirect to the version shipped with VS, but we need a copy for SampleDebugAdapter.exe. -->
<ForceIncludeInVSIX>true</ForceIncludeInVSIX>
<VSIXSubPath>adapter</VSIXSubPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(NugetPackageRoot)Microsoft.VisualStudio.Shell.Interop.7.10.6071\lib\Microsoft.VisualStudio.Shell.Interop.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.15.0, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(NugetPackageRoot)Microsoft.VisualStudio.Shell.15.0.15.0.26201\lib\Microsoft.VisualStudio.Shell.15.0.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Content Include="AdapterRegistration.pkgdef">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
</ItemGroup>
<ItemGroup>
<Compile Include="CustomProtocolExtension\SampleExtension.cs" />
</ItemGroup>
<Import Project="$(TargetsDir)\Microsoft.VisualStudio.Debugger.VSCodeDebugAdapterHost.Vsix.targets" />
</Project>