ResultProviderTestUtilities.csproj 9.6 KB
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 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 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ImportGroup Label="Settings">
    <Import Project="..\..\..\..\Tools\Microsoft.CodeAnalysis.Toolset.Open\Targets\VSL.Settings.targets" />
    <Import Project="..\..\..\..\..\build\VSL.Settings.Closed.targets" />
  </ImportGroup>
  <PropertyGroup>
    <NonShipping>true</NonShipping>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{ABDBAC1E-350E-4DC3-BB45-3504404545EE}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis.ExpressionEvaluator</RootNamespace>
    <AssemblyName>Roslyn.ExpressionEvaluator.ResultProvider.Test.Utilities</AssemblyName>
    <SolutionDir Condition="'$(SolutionDir)' == '' OR '$(SolutionDir)' == '*Undefined*'">..\..\..\..\..\</SolutionDir>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <UseCommonOutputDirectory>True</UseCommonOutputDirectory>
    <RestorePackages>true</RestorePackages>
    <!-- Don't transitively copy output files, since everything builds to the same folder. -->
  </PropertyGroup>
  <ItemGroup Label="File References">
    <Reference Include="$(OutDir)Microsoft.VisualStudio.Debugger.Metadata.dll" />
24
    <Reference Include="System.Collections.Immutable, Version=1.1.33.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
25
      <SpecificVersion>False</SpecificVersion>
26
      <HintPath>..\..\..\..\..\packages\System.Collections.Immutable.1.1.33-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll</HintPath>
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
    </Reference>
    <Reference Include="xunit">
      <HintPath>..\..\..\..\..\packages\xunit.1.9.2\lib\net20\xunit.dll</HintPath>
    </Reference>
  </ItemGroup>
  <ItemGroup Label="Project References">
    <ProjectReference Include="..\..\..\Core\Source\Concord\Concord.csproj">
      <Project>{5002636a-fe8d-40bf-8818-ab513a2194fa}</Project>
      <Name>Concord</Name>
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <Reference Include="System" />
  </ItemGroup>
  <ItemGroup Label="Linked Files">
    <Compile Include="..\..\..\..\Compilers\Core\Portable\Collections\PooledStringBuilder.cs">
      <Link>Compiler\Collections\PooledStringBuilder.cs</Link>
    </Compile>
    <Compile Include="..\..\..\..\Compilers\Core\Portable\InternalUtilities\FailFast.cs">
      <Link>Compiler\InternalUtilities\FailFast.cs</Link>
    </Compile>
    <Compile Include="..\..\..\..\Compilers\Core\Portable\InternalUtilities\FatalError.cs">
      <Link>Compiler\InternalUtilities\FatalError.cs</Link>
    </Compile>
    <Compile Include="..\..\..\..\Compilers\Core\Portable\InternalUtilities\EnumField.cs">
      <Link>Compiler\InternalUtilities\EnumField.cs</Link>
    </Compile>
    <Compile Include="..\..\..\..\Compilers\Core\Portable\InternalUtilities\ExceptionUtilities.cs">
      <Link>Compiler\InternalUtilities\ExceptionUtilities.cs</Link>
    </Compile>
    <Compile Include="..\..\..\..\Compilers\Core\SharedCollections\ObjectPool`1.cs">
      <Link>Compiler\InternalUtilities\ObjectPool`1.cs</Link>
    </Compile>
    <Compile Include="..\..\..\..\Compilers\Core\Portable\SymbolDisplay\ObjectDisplayExtensions.cs">
      <Link>Compiler\SymbolDisplay\ObjectDisplayExtensions.cs</Link>
    </Compile>
    <Compile Include="..\..\..\..\Compilers\Core\Portable\SymbolDisplay\ObjectDisplayOptions.cs">
      <Link>Compiler\SymbolDisplay\ObjectDisplayOptions.cs</Link>
    </Compile>
    <Compile Include="..\..\..\..\Compilers\Core\Portable\Symbols\WellKnownMemberNames.cs">
      <Link>Compiler\Symbols\WellKnownMemberNames.cs</Link>
    </Compile>
    <Compile Include="..\..\Source\ExpressionCompiler\DateTimeUtilities.cs">
71
      <Link>ExpressionCompiler\DateTimeUtilities.cs</Link>
72 73 74 75 76
    </Compile>
    <Compile Include="..\..\Source\ExpressionCompiler\ExpressionCompilerConstants.cs">
      <Link>ExpressionCompiler\ExpressionCompilerConstants.cs</Link>
    </Compile>
    <Compile Include="..\..\Source\ExpressionCompiler\ExpressionEvaluatorFatalError.cs">
77
      <Link>ExpressionCompiler\ExpressionEvaluatorFatalError.cs</Link>
78 79 80 81 82 83 84 85 86
    </Compile>
    <Compile Include="..\..\Source\ResultProvider\Resources.Designer.cs">
      <Link>Resources.Designer.cs</Link>
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Resources.resx</DependentUpon>
    </Compile>
  </ItemGroup>
  <ItemGroup>
87
    <Compile Include="Debugger\Engine\DkmCompilerId.cs" />
88
    <Compile Include="Debugger\Engine\DkmContinueCorruptingException.cs" />
89
    <Compile Include="Debugger\Engine\DkmEngineSettings.cs" />
90 91
    <Compile Include="Debugger\Engine\DkmEvaluateDebuggerDisplayStringAsyncResult.cs" />
    <Compile Include="Debugger\Engine\DkmEvaluationAsyncResult.cs" />
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    <Compile Include="Debugger\Engine\DkmExceptionCode.cs" />
    <Compile Include="Debugger\Engine\DkmException.cs" />
    <Compile Include="Debugger\Engine\DkmClrAppDomain.cs" />
    <Compile Include="Debugger\Engine\DkmClrDebuggerBrowsableAttribute.cs" />
    <Compile Include="Debugger\Engine\DkmClrDebuggerDisplayAttribute.cs" />
    <Compile Include="Debugger\Engine\DkmClrDebuggerTypeProxyAttribute.cs" />
    <Compile Include="Debugger\Engine\DkmClrDebuggerVisualizerAttribute.cs" />
    <Compile Include="Debugger\Engine\DkmClrEvalAttribute.cs" />
    <Compile Include="Debugger\Engine\DkmClrValueFlags.cs" />
    <Compile Include="Debugger\Engine\DkmCustomUIVisualizerInfo.cs" />
    <Compile Include="Debugger\Engine\DkmEvaluationResultCategory.cs" />
    <Compile Include="Debugger\Engine\DkmEvaluationResultEnumContext.cs" />
    <Compile Include="Debugger\Engine\DkmGetChildrenAsyncResult.cs" />
    <Compile Include="Debugger\Engine\DkmEvaluationEnumAsyncResult.cs" />
    <Compile Include="Debugger\Engine\DkmClrModuleInstance.cs" />
    <Compile Include="Debugger\Engine\DkmClrRuntimeInstance.cs" />
    <Compile Include="Debugger\Engine\DkmClrType.cs" />
    <Compile Include="Debugger\Engine\DkmClrValue.cs" />
    <Compile Include="Debugger\Engine\DkmDataContainer.cs" />
    <Compile Include="Debugger\Engine\DkmEvaluationFlags.cs" />
    <Compile Include="Debugger\Engine\DkmEvaluationResult.cs" />
    <Compile Include="Debugger\Engine\DkmEvaluationResultFlags.cs" />
    <Compile Include="Debugger\Engine\DkmFailedEvaluationResult.cs" />
    <Compile Include="Debugger\Engine\DkmInspectionContext.cs" />
116
    <Compile Include="Debugger\Engine\DkmDataItem.cs" />
117 118 119
    <Compile Include="Debugger\Engine\DkmIntermediateEvaluationResult.cs" />
    <Compile Include="Debugger\Engine\DkmLanguage.cs" />
    <Compile Include="Debugger\Engine\DkmLanguageId.cs" />
120 121 122
    <Compile Include="Debugger\Engine\DkmMisc.cs" />
    <Compile Include="Debugger\Engine\DkmModule.cs" />
    <Compile Include="Debugger\Engine\DkmModuleInstance.cs" />
123
    <Compile Include="Debugger\Engine\DkmProcess.cs" />
124
    <Compile Include="Debugger\Engine\DkmReportNonFatalWatsonExceptionAttribute.cs" />
125
    <Compile Include="Debugger\Engine\DkmRuntimeInstance.cs" />
126
    <Compile Include="Debugger\Engine\DkmSuccessEvaluationResult.cs" />
127
    <Compile Include="Debugger\Engine\DkmVendorId.cs" />
128
    <Compile Include="Debugger\Engine\DkmWorkList.cs" />
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
    <Compile Include="Debugger\Engine\IDkmClrFormatter.cs" />
    <Compile Include="Debugger\Engine\IDkmClrResultProvider.cs" />
    <Compile Include="Debugger\MemberInfo\AssemblyImpl.cs" />
    <Compile Include="Debugger\MemberInfo\ConstructorInfoImpl.cs" />
    <Compile Include="Debugger\MemberInfo\CustomAttributeDataImpl.cs" />
    <Compile Include="Debugger\MemberInfo\EventInfoImpl.cs" />
    <Compile Include="Debugger\MemberInfo\FieldInfoImpl.cs" />
    <Compile Include="Debugger\MemberInfo\MethodInfoImpl.cs" />
    <Compile Include="Debugger\MemberInfo\ModuleImpl.cs" />
    <Compile Include="Debugger\MemberInfo\ParameterInfoImpl.cs" />
    <Compile Include="Debugger\MemberInfo\PropertyInfoImpl.cs" />
    <Compile Include="Debugger\MemberInfo\TypeImpl.cs" />
    <Compile Include="ReflectionUtilities.cs" />
    <Compile Include="ResultProviderTestBase.cs" />
  </ItemGroup>
J
Jared Parsons 已提交
144 145
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
  <ItemGroup>
    <InternalsVisibleToTest Include="Roslyn.ExpressionEvaluator.CSharp.ResultProvider.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.ExpressionEvaluator.VisualBasic.ResultProvider.UnitTests" />
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="..\..\Source\ResultProvider\Resources.resx">
      <Link>Resources.resx</Link>
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
      <CustomToolNamespace>Microsoft.CodeAnalysis.ExpressionEvaluator</CustomToolNamespace>
    </EmbeddedResource>
  </ItemGroup>
  <ItemGroup>
    <None Include="packages.config" />
  </ItemGroup>
161
  <Import Project="..\..\Source\ResultProvider\ResultProvider.projitems" Label="Shared" />
162 163 164 165 166 167
  <ImportGroup Label="Targets">
    <Import Project="..\..\..\..\Tools\Microsoft.CodeAnalysis.Toolset.Open\Targets\VSL.Imports.targets" />
    <Import Project="..\..\..\..\..\build\VSL.Imports.Closed.targets" />
    <Import Project="..\..\..\..\..\build\Roslyn.Toolsets.Xunit.targets" />
    <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  </ImportGroup>
168
</Project>