/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/ExternalAccess/FSharp/Microsoft.CodeAnalysis.ExternalAccess.FSharp.csproj
44 строки
1 KB
Joey Robichaud
Consolidate ExternalAccess libraries (#81593)
07 июл 2026, 23:16
Не верифицирован
07 июл 2026, 23:16
97ee762
Код
Авторство
О чём код?
<?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> <ItemGroup> <!-- ⚠ ONLY F# ASSEMBLIES MAY BE ADDED HERE ⚠ --> <InternalsVisibleTo Include="FSharp.Editor" Key="$(FSharpKey)" /> <InternalsVisibleTo Include="FSharp.LanguageService" Key="$(FSharpKey)" /> <InternalsVisibleTo Include="VisualFSharp.UnitTests" Key="$(FSharpKey)" /> <InternalsVisibleTo Include="FSharp.Editor.Tests" Key="$(FSharpKey)" /> <InternalsVisibleTo Include="FSharp.Editor.IntegrationTests" Key="$(FSharpKey)" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Core\Microsoft.VisualStudio.LanguageServices.ExternalAccess.csproj" /> </ItemGroup> <ItemGroup> <PublicAPI Include="PublicAPI.Shipped.txt" /> <PublicAPI Include="PublicAPI.Unshipped.txt" /> <PublicAPI Include="InternalAPI.Shipped.txt" /> <PublicAPI Include="InternalAPI.Unshipped.txt" /> </ItemGroup> <ItemGroup> <Reference Include="System.ComponentModel.Composition" /> </ItemGroup> </Project>