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 Sdk="Microsoft.NET.Sdk">
S
Sam Harwell 已提交
4 5 6 7 8 9 10
  <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>
J
Jared Parsons 已提交
11
    <TargetFrameworks>$(RoslynPortableTargetFrameworks)</TargetFrameworks>
S
Sam Harwell 已提交
12 13 14
    <RoslynProjectType>UnitTestPortable</RoslynProjectType>
  </PropertyGroup>
  <ItemGroup Label="Project References">
J
Jared Parsons 已提交
15 16 17 18 19 20 21 22
    <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 已提交
23 24 25 26
  </ItemGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
  <ItemGroup>
27
    <PackageReference Include="xunit" Version="$(xunitVersion)" />
28
    <PackageReference Include="xunit.analyzers" Version="$(xunitanalyzersVersion)" />
29
    <PackageReference Include="xunit.runner.visualstudio" Version="$(xunitrunnervisualstudioVersion)" />
J
Jared Parsons 已提交
30
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNETTestSdkVersion)" />
S
Sam Harwell 已提交
31
  </ItemGroup>
32
</Project>