CSharpVisualStudio.csproj 15.1 KB
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
2
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" TreatAsLocalProperty="DeployExtension">
3
  <PropertyGroup>
4 5
    <!-- Explicitly set the language before anything else is imported. That way VSL.Settings.targets sees the right value
         even in WPF's build of a temporary project, where it won't be able to determine it based on the file extension. -->
6 7
    <ProjectLanguage>CSharp</ProjectLanguage>
  </PropertyGroup>
J
Jared Parsons 已提交
8
  <Import Project="..\..\..\..\build\Targets\VSL.Settings.targets" />
9 10 11 12 13 14 15 16 17 18 19 20 21
  <ItemGroup Label="Project References">
    <ProjectReference Include="..\..\..\Compilers\Core\Portable\CodeAnalysis.csproj">
      <Project>{1EE8CAD3-55F9-4D91-96B2-084641DA9A6C}</Project>
      <Name>CodeAnalysis</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\Compilers\CSharp\Portable\CSharpCodeAnalysis.csproj">
      <Project>{B501A547-C911-4A05-AC6E-274A50DFF30E}</Project>
      <Name>CSharpCodeAnalysis</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\Workspaces\Core\Desktop\Workspaces.Desktop.csproj">
      <Project>{2e87fa96-50bb-4607-8676-46521599f998}</Project>
      <Name>Workspaces.Desktop</Name>
    </ProjectReference>
22
    <ProjectReference Include="..\..\..\Features\CSharp\Portable\CSharpFeatures.csproj">
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
      <Project>{3973B09A-4FBF-44A5-8359-3D22CEB71F71}</Project>
      <Name>CSharpFeatures</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\EditorFeatures\CSharp\CSharpEditorFeatures.csproj">
      <Project>{B0CE9307-FFDB-4838-A5EC-CE1F7CDC4AC2}</Project>
      <Name>CSharpEditorFeatures</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\EditorFeatures\Core\EditorFeatures.csproj">
      <Project>{3CDEEAB7-2256-418A-BEB2-620B5CB16302}</Project>
      <Name>EditorFeatures</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\Workspaces\Core\Portable\Workspaces.csproj">
      <Project>{5F8D2414-064A-4B3A-9B42-8E2A04246BE5}</Project>
      <Name>Workspaces</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\Workspaces\CSharp\Portable\CSharpWorkspace.csproj">
      <Project>{21B239D0-D144-430F-A394-C066D58EE267}</Project>
      <Name>CSharpWorkspace</Name>
    </ProjectReference>
42
    <ProjectReference Include="..\..\..\Features\Core\Portable\Features.csproj">
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
      <Project>{EDC68A0E-C68D-4A74-91B7-BF38EC909888}</Project>
      <Name>Features</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\EditorFeatures\Text\TextEditorFeatures.csproj">
      <Project>{18F5FBB8-7570-4412-8CC7-0A86FF13B7BA}</Project>
      <Name>TextEditorFeatures</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\VisualStudio\Core\Def\ServicesVisualStudio.csproj">
      <Project>{86FD5B9A-4FA0-4B10-B59F-CFAF077A859C}</Project>
      <Name>ServicesVisualStudio</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\VisualStudio\Core\Impl\ServicesVisualStudioImpl.csproj">
      <Project>{C0E80510-4FBE-4B0C-AF2C-4F473787722C}</Project>
      <Name>ServicesVisualStudioImpl</Name>
    </ProjectReference>
  </ItemGroup>
  <PropertyGroup>
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
    <ProjectGuid>{5DEFADBD-44EB-47A2-A53E-F1282CC9E4E9}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.VisualStudio.LanguageServices.CSharp</RootNamespace>
    <AssemblyName>Microsoft.VisualStudio.LanguageServices.CSharp</AssemblyName>
    <!-- This project includes the VS SDK targets so we can produce a .pkgdef, but should not produce a .vsix or anything related to it -->
    <CreateVsixContainer>false</CreateVsixContainer>
    <DeployExtension>false</DeployExtension>
    <PlatformTarget>AnyCPU</PlatformTarget>
    <ImportVSSDKTargets>true</ImportVSSDKTargets>
70
    <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
71
    <CopyNuGetImplementations>false</CopyNuGetImplementations>
72 73 74 75 76 77 78 79
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  </PropertyGroup>
  <ItemGroup>
80 81 82 83 84 85 86 87 88
    <Reference Include="envdte, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
      <Private>false</Private>
    </Reference>
    <Reference Include="envdte80, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
      <Private>false</Private>
    </Reference>
    <Reference Include="microsoft.msxml, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
      <Private>false</Private>
    </Reference>
89 90 91 92 93
    <Reference Include="PresentationCore" />
    <Reference Include="PresentationFramework" />
    <Reference Include="System" />
    <Reference Include="System.ComponentModel.Composition" />
    <Reference Include="System.Core" />
94
    <Reference Include="System.Design" />
95
    <Reference Include="System.Runtime.Serialization" />
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
    <Reference Include="System.Windows.Forms" />
    <Reference Include="System.Xaml" />
    <Reference Include="System.Xml" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="WindowsBase" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="CodeModel\CSharpCodeModelNavigationPointServiceFactory.cs" />
    <Compile Include="CodeModel\CSharpCodeModelService.CodeModelEventCollector.cs" />
    <Compile Include="CodeModel\CSharpCodeModelService.cs" />
    <Compile Include="CodeModel\CSharpCodeModelService.NodeLocator.cs" />
    <Compile Include="CodeModel\CSharpCodeModelService.NodeNameGenerator.cs" />
    <Compile Include="CodeModel\CSharpCodeModelService_Prototype.cs" />
    <Compile Include="CodeModel\CSharpCodeModelServiceFactory.cs" />
    <Compile Include="CodeModel\CSharpProjectCodeModel.cs" />
    <Compile Include="CodeModel\EndRegionFormattingRule.cs" />
    <Compile Include="CodeModel\Extenders\AutoImplementedPropertyExtender.cs" />
    <Compile Include="CodeModel\Extenders\CodeTypeLocationExtender.cs" />
    <Compile Include="CodeModel\Extenders\ExtenderNames.cs" />
    <Compile Include="CodeModel\Extenders\ExtensionMethodExtender.cs" />
    <Compile Include="CodeModel\Extenders\PartialMethodExtender.cs" />
    <Compile Include="CodeModel\Interop\ICSAutoImplementedPropertyExtender.cs" />
    <Compile Include="CodeModel\Interop\ICSCodeTypeLocation.cs" />
    <Compile Include="CodeModel\Interop\ICSExtensionMethodExtender.cs" />
    <Compile Include="CodeModel\Interop\ICSPartialMethodExtender.cs" />
    <Compile Include="CodeModel\MethodXml\MethodXmlBuilder.cs" />
    <Compile Include="CodeModel\ModifierFlags.cs" />
    <Compile Include="CodeModel\ModifierFlagsExtensions.cs" />
    <Compile Include="CodeModel\ParameterFlags.cs" />
    <Compile Include="CodeModel\ParameterFlagsExtensions.cs" />
    <Compile Include="CodeModel\SyntaxListExtensions.cs" />
127
    <Compile Include="CodeModel\SyntaxNodeExtensions.cs" />
128 129 130 131 132 133 134 135 136 137 138
    <Compile Include="Debugging\BreakpointResolver.cs" />
    <Compile Include="Debugging\CSharpBreakpointResolutionService.cs" />
    <Compile Include="Debugging\CSharpLanguageDebugInfoService.cs" />
    <Compile Include="Debugging\CSharpProximityExpressionsService.cs" />
    <Compile Include="Debugging\CSharpProximityExpressionsService.ExpressionType.cs" />
    <Compile Include="Debugging\CSharpProximityExpressionsService.RelevantExpressionsCollector.cs" />
    <Compile Include="Debugging\CSharpProximityExpressionsService.Worker.cs" />
    <Compile Include="Debugging\CSharpProximityExpressionsService_ExpressionTermCollector.cs" />
    <Compile Include="Debugging\DataTipInfoGetter.cs" />
    <Compile Include="Debugging\LocationInfoGetter.cs" />
    <Compile Include="LanguageService\HACK_CSharpCreateServicesOnUIThread.cs" />
139
    <Compile Include="ObjectBrowser\CSharpLibraryService.cs" />
140
    <Compile Include="ObjectBrowser\CSharpSyncClassViewCommandHandler.cs" />
141
    <Compile Include="ObjectBrowser\ListItemFactory.cs" />
142
    <Compile Include="Options\NamingStylesOptionPage.cs" />
143 144
    <Compile Include="Options\AdvancedOptionPageStrings.cs" />
    <Compile Include="Options\IntelliSenseOptionPageStrings.cs" />
145 146 147
    <Compile Include="Telemetry\CompilationErrorDetailDiscoverer.cs" />
    <Compile Include="Telemetry\CompilationErrorDetails.cs" />
    <Compile Include="Telemetry\CSharpCompilationErrorTelemetryIncrementalAnalyzer.cs" />
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
    <Compile Include="Venus\CSharpAdditionalFormattingRuleLanguageService.cs" />
    <Compile Include="CSharpPackage.cs" />
    <Compile Include="CSharpVSResources.Designer.cs">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>CSharpVSResources.resx</DependentUpon>
    </Compile>
    <Compile Include="DesignerAttribute\CSharpDesignerAttributeIncrementalAnalyzerProvider.cs" />
    <Compile Include="EventCompletion\HACK_EventHookupDismissalOnBufferChangePreventerService.cs" />
    <Compile Include="LanguageService\CSharpCodePageEditorFactory.cs" />
    <Compile Include="LanguageService\CSharpDebuggerIntelliSenseContext.cs" />
    <Compile Include="LanguageService\CSharpEditorFactory.cs" />
    <Compile Include="LanguageService\CSharpHelpContextService.cs" />
    <Compile Include="LanguageService\CSharpLanguageService.cs" />
    <Compile Include="LanguageService\CSharpLanguageService_ICSharpProjectHost.cs" />
    <Compile Include="ObjectBrowser\DescriptionBuilder.cs" />
    <Compile Include="ObjectBrowser\ObjectBrowserLibraryManager.cs" />
    <Compile Include="Options\AdvancedOptionPage.cs" />
    <Compile Include="Options\AdvancedOptionPageControl.xaml.cs">
      <DependentUpon>AdvancedOptionPageControl.xaml</DependentUpon>
    </Compile>
    <Compile Include="Options\AutomationObject.cs" />
    <Compile Include="Options\Formatting\IndentationViewModel.cs" />
    <Compile Include="Options\Formatting\FormattingIndentationOptionPage.cs" />
    <Compile Include="Options\Formatting\NewLinesViewModel.cs" />
    <Compile Include="Options\Formatting\FormattingNewLinesPage.cs" />
    <Compile Include="Options\Formatting\FormattingOptionPage.cs" />
    <Compile Include="Options\Formatting\FormattingOptionPageControl.xaml.cs">
      <DependentUpon>FormattingOptionPageControl.xaml</DependentUpon>
    </Compile>
    <Compile Include="Options\Formatting\SpacingViewModel.cs" />
    <Compile Include="Options\Formatting\FormattingSpacingPage.cs" />
    <Compile Include="Options\Formatting\StyleViewModel.cs" />
    <Compile Include="Options\Formatting\WrappingViewModel.cs" />
182
    <Compile Include="Options\Formatting\CodeStylePage.cs" />
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
    <Compile Include="Options\Formatting\FormattingWrappingPage.cs" />
    <Compile Include="Options\IntelliSenseOptionPage.cs" />
    <Compile Include="Options\IntelliSenseOptionPageControl.xaml.cs">
      <DependentUpon>IntelliSenseOptionPageControl.xaml</DependentUpon>
    </Compile>
    <Compile Include="Progression\CSharpGraphProvider.cs" />
    <Compile Include="Progression\CSharpProgressionLanguageService.cs" />
    <Compile Include="ProjectSystemShim\CSharpProjectShim.cs" />
    <Compile Include="ProjectSystemShim\CSharpProjectShim.ICSCompiler.cs" />
    <Compile Include="ProjectSystemShim\CSharpProjectShim.ICSCompilerConfig.cs" />
    <Compile Include="ProjectSystemShim\CSharpProjectShim.ICSharpProjectSite.cs" />
    <Compile Include="ProjectSystemShim\CSharpProjectShim.ICSharpVenusProjectSite.cs" />
    <Compile Include="ProjectSystemShim\CSharpProjectShim.ICSInputSet.cs" />
    <Compile Include="ProjectSystemShim\CSharpProjectShim.IServiceProvider.cs" />
    <Compile Include="ProjectSystemShim\CSharpProjectShim.IVsEditorFactoryNotify.cs" />
    <Compile Include="ProjectSystemShim\CSharpProjectShimWithServices.CodeModel.cs" />
    <Compile Include="ProjectSystemShim\CSharpProjectShimWithServices.cs" />
    <Compile Include="ProjectSystemShim\EntryPointFinder.cs" />
    <Compile Include="ProjectSystemShim\HACK_VariantStructure.cs" />
    <Compile Include="ProjectSystemShim\Interop\CompilerOptions.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSCompileProgress.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSCompiler.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSCompilerConfig.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSEncProjectServices.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSError.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSharpProjectHost.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSharpProjectRoot.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSharpProjectSite.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSharpTempPECompilerService.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSharpVenusProjectSite.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSInputSet.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSNameTable.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSSourceModule.cs" />
    <Compile Include="ProjectSystemShim\Interop\ICSSourceText.cs" />
    <Compile Include="ProjectSystemShim\Interop\OutputFileType.cs" />
    <Compile Include="ProjectSystemShim\TempPECompilerService.cs" />
    <Compile Include="Snippets\CSharpSnippetInfoService.cs" />
    <Compile Include="Snippets\SnippetCommandHandler.cs" />
    <Compile Include="Snippets\SnippetExpansionClient.cs" />
    <Compile Include="Snippets\SnippetFunctions\SnippetFunctionClassName.cs" />
    <Compile Include="Snippets\SnippetFunctions\SnippetFunctionGenerateSwitchCases.cs" />
    <Compile Include="Snippets\SnippetFunctions\SnippetFunctionSimpleTypeName.cs" />
    <Compile Include="Utilities\BlankLineInGeneratedMethodFormattingRule.cs" />
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="CSharpVSResources.resx">
      <Generator>ResXFileCodeGenerator</Generator>
      <SubType>Designer</SubType>
      <LastGenOutput>CSharpVSResources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
    <EmbeddedResource Include="VSPackage.resx">
      <MergeWithCTO>true</MergeWithCTO>
      <ManifestResourceName>VSPackage</ManifestResourceName>
      <SubType>Designer</SubType>
    </EmbeddedResource>
  </ItemGroup>
  <ItemGroup>
240
    <InternalsVisibleTo Include="Microsoft.VisualStudio.ProjectSystem.CSharp" />
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
    <InternalsVisibleToTest Include="Roslyn.VisualStudio.CSharp.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.VisualStudio.Services.UnitTests" />
    <InternalsVisibleToTest Include="RoslynETAHost" />
  </ItemGroup>
  <ItemGroup>
    <Page Include="Options\AdvancedOptionPageControl.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Options\Formatting\FormattingOptionPageControl.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Options\IntelliSenseOptionPageControl.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
  </ItemGroup>
  <ItemGroup>
260
    <None Include="project.json" />
261
  </ItemGroup>
262 263 264
  <ItemGroup>
    <Content Include="CSharpPackageRegistration.pkgdef" />
  </ItemGroup>
265
  <ImportGroup Label="Targets">
A
Andy Gocke 已提交
266
    <Import Project="..\..\..\..\build\Targets\VSL.Imports.targets" />
267
  </ImportGroup>
J
Jared Parsons 已提交
268
</Project>