summaryrefslogtreecommitdiff
path: root/tests/src/Common/external/external.depproj
blob: 5a16122cdb07a2a658c43b12fdb492a87e278bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <!-- Given that xunit packages bring with them part of the framework, we need to specify a runtime in order to get the assets
         This RID value doesn't really matter, since the assets we are copying are not RID specific, so defaulting to Windows here
    -->
    <ProjectJson>$(MSBuildThisFileDirectory)project.json</ProjectJson>
    <ProjectLockJson>$(MSBuildThisFileDirectory)project.lock.json</ProjectLockJson>
    <Language>C#</Language>
    <NugetTargetMoniker>.NETCoreApp,Version=v1.1</NugetTargetMoniker>
    <NugetRuntimeIdentifier>win7-x64</NugetRuntimeIdentifier>
    <OutputPath>$(TargetingPackPath)</OutputPath>
    <XUnitRunnerPackageId Condition="'$(TargetGroup)' != 'netfx'">xunit.console.netcore</XUnitRunnerPackageId>
    <XUnitRunnerPackageId Condition="'$(TargetGroup)' == 'netfx'">xunit.runner.console</XUnitRunnerPackageId>
    <CLRTestKind>SharedLibrary</CLRTestKind>
  </PropertyGroup>
  <ItemGroup>
    <None Include="project.json" />
  </ItemGroup>
  <ItemGroup>
    <PackageToInclude Include="xunit.abstractions"/>
    <PackageToInclude Include="xunit.assert"/>
    <PackageToInclude Include="xunit.extensibility.core"/>
    <PackageToInclude Include="xunit.extensibility.execution"/>
    <PackageToInclude Include="xunit.runner.utility"/>
    <PackageToInclude Include="xunit.performance.api"/>
    <PackageToInclude Include="xunit.performance.core"/>
    <PackageToInclude Include="xunit.performance.execution"/>
    <PackageToInclude Include="xunit.performance.metrics"/>
    <PackageToInclude Include="Microsoft.Diagnostics.Tracing.TraceEvent"/>
    <PackageToInclude Include="Newtonsoft.Json"/>
    <PackageToInclude Include="Microsoft.CodeAnalysis.Analyzers"/>
    <PackageToInclude Include="Microsoft.CodeAnalysis.Common"/>
    <PackageToInclude Include="Microsoft.CodeAnalysis.Compilers"/>
    <PackageToInclude Include="Microsoft.CodeAnalysis.CSharp"/>
    <PackageToInclude Include="Microsoft.CodeAnalysis.VisualBasic"/>
    <PackageToInclude Include="$(XUnitRunnerPackageId)" />
  </ItemGroup>

  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />

  <Target Name="AddXunitConsoleRunner" BeforeTargets="ResolveReferences" Condition="'$(TargetGroup)' == 'netfx'">
    <Error Condition="!Exists('$(PackagesDir)$(XUnitRunnerPackageId)\$(XUnitPackageVersion)\tools\xunit.console.exe')"
            Text="Error: looks the package $(PackagesDir)$(XUnitRunnerPackageId)\$(XUnitPackageVersion) not restored or missing xunit.console.exe."
    />
    <ItemGroup>
      <ReferenceCopyLocalPaths
        Include="$(PackagesDir)$(XUnitRunnerPackageId)\$(XUnitPackageVersion)\tools\*.*"
        Exclude="$(PackagesDir)$(XUnitRunnerPackageId)\$(XUnitPackageVersion)\tools\xunit.console.exe.config"
      >
        <Private>false</Private>
        <NuGetPackageId>$(XUnitRunnerPackageId)</NuGetPackageId>
        <NuGetPackageVersion>$(XUnitPackageVersion)</NuGetPackageVersion>
      </ReferenceCopyLocalPaths>
    </ItemGroup>
</Target>
</Project>