-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathCody.VisualStudio.csproj
More file actions
185 lines (180 loc) · 8.57 KB
/
Copy pathCody.VisualStudio.csproj
File metadata and controls
185 lines (180 loc) · 8.57 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<SchemaVersion>2.0</SchemaVersion>
<ProjectTypeGuids>{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ProjectGuid>{3BB34F98-F069-4A38-BC4D-CF407D59B863}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Cody.VisualStudio</RootNamespace>
<AssemblyName>Cody.VisualStudio</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<GeneratePkgDefFile>true</GeneratePkgDefFile>
<UseCodebase>true</UseCodebase>
<IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer>
<IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer>
<IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment>
<CopyBuildOutputToOutputDirectory>true</CopyBuildOutputToOutputDirectory>
<CopyOutputSymbolsToOutputDirectory>true</CopyOutputSymbolsToOutputDirectory>
<StartAction>Program</StartAction>
<StartProgram Condition="'$(DevEnvDir)' != ''">$(DevEnvDir)devenv.exe</StartProgram>
<StartArguments>/rootsuffix Exp</StartArguments>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>VSTHRD010;VSTHRD200;VSTHRD105;VSTHRD100</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Include="Client\AgentClient.cs" />
<Compile Include="Client\AgentClientOptions.cs" />
<Compile Include="Client\AgentProcessConnector.cs" />
<Compile Include="Client\IAgentConnector.cs" />
<Compile Include="Client\NameTransformer.cs" />
<Compile Include="Client\RemoteAgentConnector.cs" />
<Compile Include="Client\TraceJsonRpc.cs" />
<Compile Include="CodyPackage.Commands.cs" />
<Compile Include="CodyPackage.ErrorHandling.cs" />
<Compile Include="CodyToolWindow.cs" />
<Compile Include="Infrastructure\LoggerFactory.cs" />
<Compile Include="Infrastructure\WindowPaneLogger.cs" />
<Compile Include="Infrastructure\VsConstants.cs" />
<Compile Include="CommandIDs.cs" />
<Compile Include="Guids.cs" />
<Compile Include="Options\GeneralOptionsPage.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="CodyPackage.cs" />
<Compile Include="Services\AgentService.cs" />
<Compile Include="Services\DocumentService.cs" />
<Compile Include="Services\EditCodeService.cs" />
<Compile Include="Services\FileDialogService.cs" />
<Compile Include="Services\ProjectItem.cs" />
<Compile Include="Services\InfobarNotifications.cs" />
<Compile Include="Services\SecretStorageService.cs" />
<Compile Include="Services\DocumentsSyncService.cs" />
<Compile Include="Services\ProgressService.cs" />
<Compile Include="Services\SolutionService.cs" />
<Compile Include="Services\TestingSupportService.cs" />
<Compile Include="Services\ThemeService.cs" />
<Compile Include="Services\StatusbarService.cs" />
<Compile Include="Services\ToastNotificationService.cs" />
<Compile Include="Services\UserSettingsProvider.cs" />
<Compile Include="Services\VsFolderStoreService.cs" />
<Compile Include="Services\VsVersionService.cs" />
<Compile Include="Utilities\FilePathHelper.cs" />
<Compile Include="Utilities\UIHelper.cs" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<Content Include="..\CodyDevConfig.json">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Wait.png" />
<Resource Include="Resources\SourcegraphWhiteError.png" />
<Resource Include="Resources\SourcegraphWhite.png" />
<Content Include="Resources\sourcegraph.png">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<None Include="publishManifest.json" />
<None Include="..\..\README.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
</None>
<Content Include="Agent\*.*">
<IncludeInVSIX>true</IncludeInVSIX>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Remove="Agent\index.js.map" Condition="'$(Configuration)' == 'Release'" />
<Content Include="Agent\webviews\*.*">
<IncludeInVSIX>true</IncludeInVSIX>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="System" />
<Reference Include="System.Design" />
<Reference Include="System.Drawing" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.0.0-previews-4-31709-430" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="18.5.40034">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<VSCTCompile Include="CodyPackage.vsct">
<ResourceName>Menus.ctmenu</ResourceName>
</VSCTCompile>
<Content Include="Resources\CodyToolWindowCommand.png" />
</ItemGroup>
<!--Completions dll start -->
<!--Workaround to get Cody.VisualStudio.Completions compiled when using Visual Studio to run and debug the extension
Only works with Visual Studio, but unfortunately not with msbuild-->
<Target Name="Completions" BeforeTargets="GetVsixSourceItems"
Condition="'$(BuildingInsideVisualStudio)' == 'true'"
>
<MSBuild Projects="..\Cody.VisualStudio.Completions\Cody.VisualStudio.Completions.csproj"
Properties="Configuration=$(Configuration)"
Targets="Build" />
</Target>
<Target Name="CopyCompletionsDllToVsix" BeforeTargets="GetVsixSourceItems">
<PropertyGroup>
<CompletionsDllPath>..\Cody.VisualStudio.Completions\bin\$(Configuration)\Cody.VisualStudio.Completions.dll</CompletionsDllPath>
</PropertyGroup>
<ItemGroup Condition="Exists('$(CompletionsDllPath)')">
<VSIXSourceItem Include="$(CompletionsDllPath)">
<VSIXSubPath>.</VSIXSubPath>
</VSIXSourceItem>
</ItemGroup>
</Target>
<!--Completions dll end -->
<ItemGroup>
<ProjectReference Include="..\Cody.Core\Cody.Core.csproj">
<Project>{9FF2CC40-78E9-46C8-B2EF-30A1F1BE82F2}</Project>
<Name>Cody.Core</Name>
</ProjectReference>
<ProjectReference Include="..\Cody.UI\Cody.UI.csproj">
<Project>{7BE6018E-01DA-4404-A56E-6478A0D513FC}</Project>
<Name>Cody.UI</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>