CodeStyleTests.csproj 1.8 KB
Newer Older
S
Sam Harwell 已提交
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 DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
  <Import Project="..\..\..\..\build\Targets\SettingsSdk.props" />
S
Sam Harwell 已提交
5 6 7 8 9 10 11
  <PropertyGroup>
    <NonShipping>True</NonShipping>
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
    <PlatformTarget>AnyCPU</PlatformTarget>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis</RootNamespace>
    <AssemblyName>Microsoft.CodeAnalysis.CodeStyle.UnitTests</AssemblyName>
12
    <TargetFramework>netstandard1.3</TargetFramework>
S
Sam Harwell 已提交
13 14 15
    <RoslynProjectType>UnitTestPortable</RoslynProjectType>
  </PropertyGroup>
  <ItemGroup Label="Project References">
J
Jared Parsons 已提交
16 17 18 19
    <ProjectReference Include="..\..\..\Compilers\Core\Portable\CodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\Workspaces\Core\Portable\Workspaces.csproj" />
    <ProjectReference Include="..\Analyzers\CodeStyle.csproj" />
    <ProjectReference Include="..\CodeFixes\CodeStyleFixes.csproj" />
S
Sam Harwell 已提交
20 21 22 23 24 25 26 27
  </ItemGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
  <ItemGroup>
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes" />
  </ItemGroup>
  <ItemGroup>
28 29
    <PackageReference Include="xunit" Version="$(xunitVersion)" />
    <PackageReference Include="xunit.runner.console" Version="$(xunitrunnerconsoleVersion)" />
S
Sam Harwell 已提交
30 31 32
  </ItemGroup>
  <Import Project="..\..\..\..\build\Targets\Imports.targets" />
</Project>