Microsoft.CodeAnalysis.CodeStyle.csproj 2.1 KB
Newer Older
1 2
<?xml version="1.0" encoding="utf-8"?>
<!-- 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 6 7 8
  <PropertyGroup>
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
    <PlatformTarget>AnyCPU</PlatformTarget>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis</RootNamespace>
9
    <TargetFramework>netstandard1.3</TargetFramework>
10
  </PropertyGroup>
11
  <ItemGroup>
12
    <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="$(MicrosoftCodeAnalysisCommonFixedVersion)" />
13 14 15 16 17 18 19 20 21
  </ItemGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
  <ItemGroup>
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CodeStyle.Fixes" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.CodeStyle" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.VisualBasic.CodeStyle" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes" />
T
Tomas Matousek 已提交
22 23 24
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CodeStyle.Tests" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.CodeStyle.Tests" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Tests" />
25 26
  </ItemGroup>
  <ItemGroup>
27
    <Compile Update="CodeStyleResources.Designer.cs">
28 29 30 31 32 33
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>CodeStyleResources.resx</DependentUpon>
    </Compile>
  </ItemGroup>
  <ItemGroup>
34
    <EmbeddedResource Update="CodeStyleResources.resx">
35 36 37 38 39 40 41 42 43 44
      <Generator>ResXFileCodeGenerator</Generator>
      <SubType>Designer</SubType>
      <LastGenOutput>CodeStyleResources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
  </ItemGroup>
  <ItemGroup>
    <PublicAPI Include="PublicAPI.Shipped.txt" />
    <PublicAPI Include="PublicAPI.Unshipped.txt" />
  </ItemGroup>
</Project>