Microsoft.CodeAnalysis.CSharp.EditorFeatures.csproj 3.4 KB
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
J
Jonathon Marolf 已提交
2
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
3
<Project Sdk="Microsoft.NET.Sdk">
4 5 6
  <PropertyGroup>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis.Editor.CSharp</RootNamespace>
T
Tomas Matousek 已提交
7
    <TargetFramework>net472</TargetFramework>
8
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
9
    <ApplyNgenOptimization>partial</ApplyNgenOptimization>
T
Tomáš Matoušek 已提交
10 11 12 13 14 15

    <!-- NuGet -->
    <IsPackable>true</IsPackable>
    <PackageDescription>
      .NET Compiler Platform ("Roslyn") support for C# editor features inside the Visual Studio editor.
    </PackageDescription>
16 17
  </PropertyGroup>
  <ItemGroup Label="Project References">
J
Jared Parsons 已提交
18 19 20 21 22
    <ProjectReference Include="..\..\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj" />
    <ProjectReference Include="..\..\Compilers\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj" />
    <ProjectReference Include="..\..\Workspaces\Core\Portable\Microsoft.CodeAnalysis.Workspaces.csproj" />
    <ProjectReference Include="..\..\Features\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.Features.csproj" />
    <ProjectReference Include="..\..\Features\Core\Portable\Microsoft.CodeAnalysis.Features.csproj" />
23
    <ProjectReference Include="..\..\Scripting\Core\Microsoft.CodeAnalysis.Scripting.csproj" />
J
Jared Parsons 已提交
24 25 26
    <ProjectReference Include="..\Text\Microsoft.CodeAnalysis.EditorFeatures.Text.csproj" />
    <ProjectReference Include="..\..\Workspaces\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.Workspaces.csproj" />
    <ProjectReference Include="..\Core\Microsoft.CodeAnalysis.EditorFeatures.csproj" />
27 28 29
  </ItemGroup>
  <ItemGroup>
    <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.CSharp" />
30
    <InternalsVisibleTo Include="Roslyn.Hosting.Diagnostics" />
T
Tomas Matousek 已提交
31 32 33 34 35 36
    <InternalsVisibleTo Include="InteractiveHost.UnitTests" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.EditorFeatures.UnitTests" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.EditorFeatures2.UnitTests" />
    <InternalsVisibleTo Include="Roslyn.Services.Test.Utilities" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities" />
37 38
  </ItemGroup>
  <ItemGroup>
39
    <Compile Update="CSharpEditorResources.Designer.cs">
40 41 42 43 44 45
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>CSharpEditorResources.resx</DependentUpon>
    </Compile>
  </ItemGroup>
  <ItemGroup>
46
    <Reference Include="System.ComponentModel.Composition" />
47
    <PackageReference Include="Microsoft.VisualStudio.Language.Intellisense" Version="$(MicrosoftVisualStudioLanguageIntellisenseVersion)" />
48
    <PackageReference Include="ICSharpCode.Decompiler" Version="$(ICSharpCodeDecompilerVersion)" />
I
Ivan Basov 已提交
49
    <PackageReference Include="Microsoft.VisualStudio.Threading" Version="$(MicrosoftVisualStudioThreadingVersion)" />
50 51
  </ItemGroup>
  <ItemGroup>
52
    <EmbeddedResource Update="CSharpEditorResources.resx">
53 54 55 56 57 58
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>CSharpEditorResources.Designer.cs</LastGenOutput>
      <SubType>Designer</SubType>
    </EmbeddedResource>
  </ItemGroup>
  <ItemGroup>
J
Jared Parsons 已提交
59 60
    <PublicAPI Include="PublicAPI.Shipped.txt" />
    <PublicAPI Include="PublicAPI.Unshipped.txt" />
61
  </ItemGroup>
62
</Project>