FunctionResolverTest.csproj 2.9 KB
Newer Older
C
Charles Stoner 已提交
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
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
  <Import Project="..\..\..\..\..\build\Targets\SettingsSdk.props" />
C
Charles Stoner 已提交
5 6 7
  <PropertyGroup>
    <NonShipping>true</NonShipping>
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
8
    <PlatformTarget>AnyCPU</PlatformTarget>
C
Charles Stoner 已提交
9 10 11 12
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis.ExpressionEvaluator.UnitTests</RootNamespace>
    <AssemblyName>Roslyn.ExpressionEvaluator.FunctionResolver.UnitTests</AssemblyName>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
13
    <TargetFramework>net46</TargetFramework>
14
    <RuntimeIdentifiers>win7</RuntimeIdentifiers>
C
Charles Stoner 已提交
15 16 17 18
    <RoslynProjectType>UnitTest</RoslynProjectType>
    <!-- Don't transitively copy output files, since everything builds to the same folder. -->
  </PropertyGroup>
  <ItemGroup Label="Project References">
J
Jared Parsons 已提交
19 20 21 22 23 24 25 26 27 28 29
    <ProjectReference Include="..\..\..\..\Compilers\Test\Utilities\CSharp.Desktop\CSharpCompilerTestUtilities.Desktop.csproj" />
    <ProjectReference Include="..\..\..\..\Compilers\Test\Utilities\CSharp\CSharpCompilerTestUtilities.csproj" />
    <ProjectReference Include="..\..\..\..\Compilers\Test\Utilities\VisualBasic\BasicCompilerTestUtilities.vbproj" />
    <ProjectReference Include="..\..\..\..\Compilers\Core\Portable\CodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\..\Compilers\CSharp\Portable\CSharpCodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\..\Compilers\VisualBasic\Portable\BasicCodeAnalysis.vbproj" />
    <ProjectReference Include="..\..\..\..\Test\Utilities\Portable\TestUtilities.csproj" />
    <ProjectReference Include="..\..\..\Core\Source\FunctionResolver\FunctionResolver.csproj" />
    <ProjectReference Include="..\..\..\..\Test\PdbUtilities\PdbUtilities.csproj" />
    <ProjectReference Include="..\..\..\..\Test\Utilities\Desktop\TestUtilities.Desktop.csproj" />
    <ProjectReference Include="..\..\..\..\Compilers\Test\Resources\Core\CompilerTestResources.csproj" />
C
Charles Stoner 已提交
30
  </ItemGroup>
31 32
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
C
Charles Stoner 已提交
33
  <ItemGroup>
34
    <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
C
Charles Stoner 已提交
35
  </ItemGroup>
36
  <ItemGroup>
37 38
    <PackageReference Include="Microsoft.VisualStudio.Debugger.Engine" Version="$(MicrosoftVisualStudioDebuggerEngineVersion)" />
    <PackageReference Include="xunit" Version="$(xunitVersion)" />
39
    <PackageReference Include="xunit.analyzers" Version="$(xunitanalyzersVersion)" />
40
    <PackageReference Include="xunit.runner.console" Version="$(xunitrunnerconsoleVersion)" />
41
  </ItemGroup>
C
Charles Stoner 已提交
42
  <Import Project="..\..\..\..\..\build\Targets\Imports.targets" />
43
</Project>