Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TextLogic.csproj « TextLogic « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7b3b7823e4f3368c93f4174afa5a702bca58171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <AssemblyName>Microsoft.VisualStudio.Text.Logic</AssemblyName>
    <RootNamespace>$(AssemblyName)</RootNamespace>
    <TargetFramework>net46</TargetFramework>
    <NonShipping>false</NonShipping>
    <IsPackable>true</IsPackable>
    <PushToPublicFeed>true</PushToPublicFeed>
    <NoWarn>649;436;$(NoWarn)</NoWarn>
    <AssemblyAttributeClsCompliant>true</AssemblyAttributeClsCompliant>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.ComponentModel.Composition" />
    <Reference Include="System.Core" />
  </ItemGroup>
  <ItemGroup>
    <PackageReference Include="System.Collections.Immutable" Version="$(SystemCollectionsImmutableVersion)" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\TextData\TextData.csproj" />
    <ProjectReference Include="..\..\..\Core\Def\CoreUtility.csproj" />
  </ItemGroup>
  <ItemGroup>
    <None Include="Diagrams\Tagging.cd" />
    <None Include="Diagrams\Undo.cd" />
  </ItemGroup>
</Project>