CSharpWinRTTest.csproj 2.3 KB
Newer Older
A
Andy Gocke 已提交
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" />
A
Andy Gocke 已提交
5 6
  <PropertyGroup>
    <NonShipping>true</NonShipping>
7
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
8
    <PlatformTarget>AnyCPU</PlatformTarget>
A
Andy Gocke 已提交
9 10 11
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis.CSharp.UnitTests.CodeGen</RootNamespace>
    <AssemblyName>Roslyn.Compilers.CSharp.WinRT.UnitTests</AssemblyName>
12
    <TargetFramework>net46</TargetFramework>
13
    <RuntimeIdentifiers>win7</RuntimeIdentifiers>
14
    <RoslynProjectType>UnitTest</RoslynProjectType>
A
Andy Gocke 已提交
15
  </PropertyGroup>
16 17
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
A
Andy Gocke 已提交
18
  <ItemGroup>
J
Jared Parsons 已提交
19 20 21 22 23 24 25 26 27
    <ProjectReference Include="..\..\..\..\Test\Utilities\Desktop\TestUtilities.Desktop.csproj" />
    <ProjectReference Include="..\..\..\..\Test\Utilities\Portable\TestUtilities.csproj" />
    <ProjectReference Include="..\..\..\Core\Portable\CodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\Test\Resources\Core\CompilerTestResources.csproj" />
    <ProjectReference Include="..\..\..\Test\Utilities\CSharp.Desktop\CSharpCompilerTestUtilities.Desktop.csproj" />
    <ProjectReference Include="..\..\..\Test\Utilities\CSharp\CSharpCompilerTestUtilities.csproj" />
    <ProjectReference Include="..\..\Portable\CSharpCodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\VisualBasic\Portable\BasicCodeAnalysis.vbproj" />
    <ProjectReference Include="..\..\..\..\Test\PdbUtilities\PdbUtilities.csproj" />
A
Andy Gocke 已提交
28 29 30
  </ItemGroup>
  <ItemGroup>
    <Reference Include="System.Xml.Linq" />
31 32
    <PackageReference Include="xunit" Version="$(xunitVersion)" />
    <PackageReference Include="xunit.runner.console" Version="$(xunitrunnerconsoleVersion)" />
A
Andy Gocke 已提交
33
  </ItemGroup>
34 35 36
  <ItemGroup>
    <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
  </ItemGroup>
J
Jared Parsons 已提交
37
  <Import Project="..\..\..\..\..\build\Targets\Imports.targets" />
38
</Project>