Microsoft.CodeAnalysis.ExternalAccess.FSharp.csproj 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis.ExternalAccess.FSharp</RootNamespace>
    <TargetFramework>net472</TargetFramework>

    <!-- NuGet -->
    <IsPackable>true</IsPackable>
    <PackageId>Microsoft.CodeAnalysis.ExternalAccess.FSharp</PackageId>
    <PackageDescription>
      A supporting package for F#:
      https://github.com/Microsoft/visualfsharp
    </PackageDescription>
  </PropertyGroup>
17
  
18 19 20 21 22 23 24 25 26 27
  <ItemGroup>
    <!--
      ⚠ ONLY F# ASSEMBLIES MAY BE ADDED HERE ⚠
    -->
    <InternalsVisibleTo Include="FSharp.Editor" Key="$(FSharpKey)" />
    <InternalsVisibleTo Include="FSharp.LanguageService" Key="$(FSharpKey)" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\..\..\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj" />
28 29
    <ProjectReference Include="..\..\..\EditorFeatures\CSharp\Microsoft.CodeAnalysis.CSharp.EditorFeatures.csproj" />
    <ProjectReference Include="..\..\..\Workspaces\Core\Portable\Microsoft.CodeAnalysis.Workspaces.csproj" />
30 31 32 33 34 35 36 37
  </ItemGroup>

  <ItemGroup>
    <PublicAPI Include="PublicAPI.Shipped.txt" />
    <PublicAPI Include="PublicAPI.Unshipped.txt" />
  </ItemGroup>

</Project>