ServicesTestUtilities.csproj 4.8 KB
Newer Older
1 2 3
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ImportGroup Label="Settings">
A
Andy Gocke 已提交
4
    <Import Project="..\..\..\build\Targets\VSL.Settings.targets" />
5 6 7 8 9 10 11 12 13 14 15
  </ImportGroup>
  <PropertyGroup>
    <Nonshipping>true</Nonshipping>
    <Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
    <ProjectGuid>{76C6F005-C89D-4348-BB4A-39189DDBEB52}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis.Test.Utilities</RootNamespace>
    <AssemblyName>Roslyn.Services.Test.Utilities</AssemblyName>
    <SolutionDir Condition="'$(SolutionDir)' == '' OR '$(SolutionDir)' == '*Undefined*'">..\..\..\</SolutionDir>
    <RestorePackages>true</RestorePackages>
16
    <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
17 18 19 20 21 22 23 24 25
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|ARM' ">
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
J
Jared Parsons 已提交
26
    <DefineConstants>$(DefineConstants);ARM</DefineConstants>
27 28 29 30
    <PlatformTarget>ARM</PlatformTarget>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|ARM' ">
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
J
Jared Parsons 已提交
31
    <DefineConstants>$(DefineConstants);ARM</DefineConstants>
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
    <PlatformTarget>ARM</PlatformTarget>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="PresentationCore" />
    <Reference Include="PresentationFramework" />
    <Reference Include="ReachFramework" />
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Windows.Forms" />
    <Reference Include="System.Xaml" />
    <Reference Include="System.XML" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="WindowsBase" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Async\AsynchronousOperationBlocker.cs" />
    <Compile Include="Async\Checkpoint.cs" />
    <Compile Include="Async\WaitHelper.cs" />
50
    <Compile Include="BlindAggregatorFactory.cs" />
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
    <Compile Include="DispatcherExtensions.cs" />
    <Compile Include="DirectoryExtensions.cs" />
    <Compile Include="ExceptionUtilities.cs" />
    <Compile Include="Parallel\AsyncFactCommand.cs" />
    <Compile Include="Parallel\AsyncTestClassCommand.cs" />
    <Compile Include="Parallel\ExceptionCaptureCommand.cs" />
    <Compile Include="Parallel\ParallelFixtureAttribute.cs" />
    <Compile Include="Parallel\ParallelTestClassCommand.cs" />
    <Compile Include="Traits.cs" />
    <Compile Include="VisualStudioSendKeys.cs" />
  </ItemGroup>
  <ItemGroup>
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.CommandLine.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.Emit.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.EnC.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.Semantic.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.Symbol.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.Syntax.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.Test.Utilities" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.VisualBasic.CommandLine.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.VisualBasic.Emit.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.VisualBasic.EnC.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.VisualBasic.Semantic.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.VisualBasic.Symbol.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.VisualBasic.Syntax.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.VisualBasic.Test.Utilities" />
    <InternalsVisibleToTest Include="Roslyn.InteractiveHost.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Scripting.Common.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Scripting.CSharp.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Scripting.VisualBasic.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Services.Editor.UnitTests" />
  </ItemGroup>
  <ItemGroup>
85
    <None Include="project.json" />
86 87
  </ItemGroup>
  <ImportGroup Label="Targets">
A
Andy Gocke 已提交
88 89
    <Import Project="..\..\..\build\Targets\VSL.Imports.targets" />
    <Import Project="..\..\..\build\Targets\Roslyn.Toolsets.Xunit.targets" />
90
  </ImportGroup>
91
</Project>