Microsoft.CodeAnalysis.ExpressionCompiler.Utilities.csproj 1.7 KB
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
J
Jonathon Marolf 已提交
2
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
3
<Project Sdk="Microsoft.NET.Sdk">
4 5 6
  <PropertyGroup>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis.ExpressionEvaluator.UnitTests</RootNamespace>
J
Jared Parsons 已提交
7
    <AssemblyName>Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler.Utilities</AssemblyName>
8
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
T
Tomas Matousek 已提交
9
    <TargetFramework>net472</TargetFramework>
10
    <IsShipping>false</IsShipping>
11 12 13
  </PropertyGroup>
  <ItemGroup Label="File References">
    <Reference Include="System" />
14
    <PackageReference Include="Microsoft.VisualStudio.Debugger.Engine-implementation" Version="$(MicrosoftVisualStudioDebuggerEngineimplementationVersion)" />
15 16
  </ItemGroup>
  <ItemGroup Label="Project References">
J
Jared Parsons 已提交
17 18 19 20
    <ProjectReference Include="..\..\..\..\Test\Utilities\Portable\Roslyn.Test.Utilities.csproj" />
    <ProjectReference Include="..\..\..\..\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\Core\Source\ExpressionCompiler\Microsoft.CodeAnalysis.ExpressionCompiler.csproj" />
    <ProjectReference Include="..\..\..\..\Test\PdbUtilities\Roslyn.Test.PdbUtilities.csproj">
21 22 23 24
      <Aliases>PDB</Aliases>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
T
Tomas Matousek 已提交
25 26
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler.UnitTests" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler.UnitTests" />
27
  </ItemGroup>
J
Jared Parsons 已提交
28
</Project>