PdbUtilities.csproj 6.6 KB
Newer Older
P
Pilchie 已提交
1 2 3 4 5
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft Open Technologies, Inc.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information. -->
<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" />
6
    <Import Project="..\..\packages\Microsoft.Net.ToolsetCompilers.0.7.4070101-beta\build\Microsoft.Net.ToolsetCompilers.props" Condition="Exists('..\..\packages\Microsoft.Net.ToolsetCompilers.0.7.4070101-beta\build\Microsoft.Net.ToolsetCompilers.props')" />
P
Pilchie 已提交
7 8 9 10
  </ImportGroup>
  <PropertyGroup>
    <Nonshipping>true</Nonshipping>
    <Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
11
    <OutDir>..\..\..\Binaries\$(Configuration)\</OutDir>
P
Pilchie 已提交
12 13 14 15 16 17 18 19 20 21
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
    <ProjectGuid>{AFDE6BEA-5038-4A4A-A88E-DBD2E4088EED}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>Roslyn.Test.PdbUtilities</RootNamespace>
    <AssemblyName>Roslyn.Test.PdbUtilities</AssemblyName>
    <StyleCopEnabled>false</StyleCopEnabled>
    <SolutionDir Condition="'$(SolutionDir)' == '' OR '$(SolutionDir)' == '*Undefined*'">..\..\</SolutionDir>
    <RestorePackages>true</RestorePackages>
  </PropertyGroup>
  <ItemGroup Label="Linked Files">
22
    <Compile Include="..\..\Compilers\Core\Portable\Collections\ArrayBuilder.cs">
P
Pilchie 已提交
23 24
      <Link>Collections\ArrayBuilder.cs</Link>
    </Compile>
25
    <Compile Include="..\..\Compilers\Core\Portable\Collections\ArrayBuilder.ArrayBuilderEnumerator.cs">
P
Pilchie 已提交
26 27
      <Link>Collections\ArrayBuilder.ArrayBuilderEnumerator.cs</Link>
    </Compile>
28
    <Compile Include="..\..\Compilers\Core\Portable\Collections\PooledStringBuilder.cs">
P
Pilchie 已提交
29 30
      <Link>Collections\PooledStringBuilder.cs</Link>
    </Compile>
31
    <Compile Include="..\..\Compilers\Core\Portable\InternalUtilities\ExceptionUtilities.cs">
P
Pilchie 已提交
32 33
      <Link>InternalUtilities\ExceptionUtilities.cs</Link>
    </Compile>
34
    <Compile Include="..\..\Compilers\Core\Portable\InternalUtilities\ComStreamWrapper.cs">
P
Pilchie 已提交
35 36
      <Link>InternalUtilities\ComStreamWrapper.cs</Link>
    </Compile>
37
    <Compile Include="..\..\Compilers\Core\Portable\InternalUtilities\ObjectPool`1.cs">
P
Pilchie 已提交
38 39 40 41 42
      <Link>InternalUtilities\ObjectPool`1.cs</Link>
    </Compile>
  </ItemGroup>
  <ItemGroup Label="File References">
    <Reference Include="System.Reflection.Metadata">
43
      <HintPath>..\..\packages\Microsoft.Bcl.Metadata.1.0.12-alpha\lib\portable-net45+win8\System.Reflection.Metadata.dll</HintPath>
P
Pilchie 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    </Reference>
    <Reference Include="CorApi">
      <HintPath>..\..\packages\MDbg.0.1.0\lib\net40\CorApi.dll</HintPath>
    </Reference>
    <Reference Include="CorApiRaw">
      <HintPath>..\..\packages\MDbg.0.1.0\lib\net40\CorApiRaw.dll</HintPath>
    </Reference>
    <Reference Include="MDbgEng">
      <HintPath>..\..\packages\MDbg.0.1.0\lib\net40\MDbgEng.dll</HintPath>
    </Reference>
    <Reference Include="MDbgExt">
      <HintPath>..\..\packages\MDbg.0.1.0\lib\net40\MDbgExt.dll</HintPath>
    </Reference>
    <Reference Include="MDbgUtility">
      <HintPath>..\..\packages\MDbg.0.1.0\lib\net40\MDbgUtility.dll</HintPath>
    </Reference>
    <Reference Include="NativeDebugWrappers">
      <HintPath>..\..\packages\MDbg.0.1.0\lib\net40\NativeDebugWrappers.dll</HintPath>
    </Reference>
    <Reference Include="System.Collections.Immutable">
64
      <HintPath>..\..\packages\Microsoft.Bcl.Immutable.1.1.20-beta\lib\portable-net45+win8\System.Collections.Immutable.dll</HintPath>
P
Pilchie 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
    </Reference>
  </ItemGroup>
  <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>
    <DefineConstants>ARM</DefineConstants>
    <PlatformTarget>ARM</PlatformTarget>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|ARM' ">
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <DefineConstants>ARM</DefineConstants>
    <PlatformTarget>ARM</PlatformTarget>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.XML" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Metadata\ILVisualizer.cs" />
    <Compile Include="Metadata\ILVisualizerAsTokens.cs" />
    <Compile Include="Metadata\MetadataVisualizer.cs" />
    <Compile Include="Metadata\MethodILExtensions.cs" />
    <Compile Include="Pdb\PdbToXml.cs" />
    <Compile Include="Pdb\PdbToXmlOptions.cs" />
    <Compile Include="Pdb\TempPdbReader.cs" />
    <Compile Include="Pdb\Token2SourceLineExporter.cs" />
    <Compile Include="Shared\CustomDebugInfoReader.cs" />
    <Compile Include="Shared\DummyMetadataImport.cs" />
    <Compile Include="Shared\IMetadataImport.cs" />
    <Compile Include="Shared\ISymENCUnmanagedMethod.cs" />
    <Compile Include="Shared\ISymUnmanagedDocument.cs" />
    <Compile Include="Shared\ISymUnmanagedMethod.cs" />
    <Compile Include="Shared\ISymUnmanagedNamespace.cs" />
    <Compile Include="Shared\ISymUnmanagedReader.cs" />
    <Compile Include="Shared\ISymUnmanagedReader2.cs" />
    <Compile Include="Shared\ISymUnmanagedScope.cs" />
    <Compile Include="Shared\ISymUnmanagedVariable.cs" />
    <Compile Include="Shared\SymUnmanagedReaderExtensions.cs" />
  </ItemGroup>
109
  <ItemGroup />
P
Pilchie 已提交
110 111 112
  <ImportGroup Label="Targets">
    <Import Project="..\..\Tools\Microsoft.CodeAnalysis.Toolset.Open\Targets\VSL.Imports.targets" />
    <Import Project="..\..\packages\StyleCop.MSBuild.4.7.48.2\build\StyleCop.MSBuild.Targets" Condition="Exists('..\..\packages\StyleCop.MSBuild.4.7.48.2\build\StyleCop.MSBuild.Targets')" />
K
kayleh 已提交
113
    <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
P
Pilchie 已提交
114 115 116 117 118 119 120 121
  </ImportGroup>
  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
    <PropertyGroup>
      <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
    </PropertyGroup>
    <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
  </Target>
</Project>