CSharpCodeStyleTests.csproj 2.0 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.CSharp</RootNamespace>
    <AssemblyName>Microsoft.CodeAnalysis.CSharp.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 20 21 22 23
    <ProjectReference Include="..\..\..\Compilers\Core\Portable\CodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\Compilers\CSharp\Portable\CSharpCodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\Workspaces\Core\Portable\Workspaces.csproj" />
    <ProjectReference Include="..\..\..\Workspaces\CSharp\Portable\CSharpWorkspace.csproj" />
    <ProjectReference Include="..\..\Core\Analyzers\CodeStyle.csproj" />
    <ProjectReference Include="..\..\Core\CodeFixes\CodeStyleFixes.csproj" />
    <ProjectReference Include="..\Analyzers\CSharpCodeStyle.csproj" />
    <ProjectReference Include="..\CodeFixes\CSharpCodeStyleFixes.csproj" />
S
Sam Harwell 已提交
24 25 26 27
  </ItemGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
  <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>