Microsoft.CodeAnalysis.CSharp.EditorFeatures.csproj 3.2 KB
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- Copyright (c)  Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information. -->
3
<Project Sdk="Microsoft.NET.Sdk">
4 5
  <PropertyGroup>
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
6
    <PlatformTarget>AnyCPU</PlatformTarget>
7 8
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis.Editor.CSharp</RootNamespace>
9
    <TargetFramework>net46</TargetFramework>
10
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
11 12
  </PropertyGroup>
  <ItemGroup Label="Project References">
J
Jared Parsons 已提交
13 14 15 16 17 18 19 20
    <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" />
    <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" />
21
  </ItemGroup>
22 23
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
24 25
  <ItemGroup>
    <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.CSharp" />
26
    <InternalsVisibleTo Include="Microsoft.VisualStudio.CSharp.Repl" />
27
    <InternalsVisibleTo Include="Roslyn.Hosting.Diagnostics" />
T
Tomas Matousek 已提交
28 29 30 31 32 33
    <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" />
34 35
  </ItemGroup>
  <ItemGroup>
36
    <Compile Update="CSharpEditorResources.Designer.cs">
37 38 39 40 41 42
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>CSharpEditorResources.resx</DependentUpon>
    </Compile>
  </ItemGroup>
  <ItemGroup>
43
    <Reference Include="System.ComponentModel.Composition" />
44
    <PackageReference Include="Microsoft.VisualStudio.Language.Intellisense" Version="$(MicrosoftVisualStudioLanguageIntellisenseVersion)" />
45 46
  </ItemGroup>
  <ItemGroup>
47
    <EmbeddedResource Update="CSharpEditorResources.resx">
48 49 50 51 52 53
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>CSharpEditorResources.Designer.cs</LastGenOutput>
      <SubType>Designer</SubType>
    </EmbeddedResource>
  </ItemGroup>
  <ItemGroup>
J
Jared Parsons 已提交
54 55
    <PublicAPI Include="PublicAPI.Shipped.txt" />
    <PublicAPI Include="PublicAPI.Unshipped.txt" />
56
  </ItemGroup>
57
</Project>