Microsoft.CodeAnalysis.VisualBasic.Features.vbproj 4.0 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
    <OutputType>Library</OutputType>
8
    <TargetFramework>netstandard1.3</TargetFramework>
9
    <RootNamespace></RootNamespace>
10 11
  </PropertyGroup>
  <ItemGroup Label="Project References">
J
Jared Parsons 已提交
12 13 14 15 16
    <ProjectReference Include="..\..\..\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\Compilers\VisualBasic\Portable\Microsoft.CodeAnalysis.VisualBasic.vbproj" />
    <ProjectReference Include="..\..\..\Workspaces\Core\Portable\Microsoft.CodeAnalysis.Workspaces.csproj" />
    <ProjectReference Include="..\..\Core\Portable\Microsoft.CodeAnalysis.Features.csproj" />
    <ProjectReference Include="..\..\..\Workspaces\VisualBasic\Portable\Microsoft.CodeAnalysis.VisualBasic.Workspaces.vbproj" />
17
  </ItemGroup>
18 19
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
20 21
  <ItemGroup>
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.VisualBasic.EditorFeatures" />
22
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.VisualBasic.InteractiveEditorFeatures" />
23
    <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.VisualBasic" />
24
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.Remote.Workspaces" />
T
Tomas Matousek 已提交
25 26 27 28 29 30 31 32 33 34 35
    <InternalsVisibleTo Include="MonoDevelop.VBNetBinding" Key="$(MonoDevelopKey)" />
    <InternalsVisibleTo Include="MonoDevelop.VBNetBinding.Tests" Key="$(MonoDevelopKey)" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.EditorFeatures.UnitTests" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.EditorFeatures2.UnitTests" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.Workspaces.UnitTests" />
    <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.UnitTests" />
    <InternalsVisibleTo Include="Roslyn.Services.Test.Utilities" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities" />
    <InternalsVisibleTo Include="Roslyn.VisualStudio.Next.UnitTests" />
36 37 38 39 40 41 42 43 44 45
  </ItemGroup>
  <ItemGroup>
    <Import Include="Microsoft.CodeAnalysis.Shared.Extensions" />
    <Import Include="Microsoft.CodeAnalysis.Shared.Utilities" />
    <Import Include="Microsoft.CodeAnalysis.VisualBasic.Extensions" />
    <Import Include="Roslyn.Utilities" />
    <Import Include="System.Threading.Tasks" />
    <Import Include="System.Xml.Linq" />
  </ItemGroup>
  <ItemGroup>
46
    <Compile Include="..\..\..\Compilers\VisualBasic\Portable\Syntax\LambdaUtilities.vb">
47
      <Link>InternalUtilities\LambdaUtilities.vb</Link>
48
    </Compile>
49
    <Compile Update="VBFeaturesResources.Designer.vb">
50 51 52 53 54 55
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>VBFeaturesResources.resx</DependentUpon>
    </Compile>
  </ItemGroup>
  <ItemGroup>
56
    <EmbeddedResource Update="VBFeaturesResources.resx">
57 58 59 60 61 62 63 64 65
      <CustomToolNamespace>Microsoft.CodeAnalysis.VisualBasic.VBFeaturesResources</CustomToolNamespace>
      <Generator>VbMyResourcesResXFileCodeGenerator</Generator>
      <LastGenOutput>VBFeaturesResources.Designer.vb</LastGenOutput>
      <SubType>Designer</SubType>
    </EmbeddedResource>
  </ItemGroup>
  <ItemGroup>
    <Folder Include="My Project\" />
  </ItemGroup>
66
  <ItemGroup>
J
Jared Parsons 已提交
67 68
    <PublicAPI Include="PublicAPI.Shipped.txt" />
    <PublicAPI Include="PublicAPI.Unshipped.txt" />
69
  </ItemGroup>
70
  <Import Project="..\..\..\Compilers\VisualBasic\BasicAnalyzerDriver\BasicAnalyzerDriver.projitems" Label="Shared" />
71
</Project>