Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gen-test.csproj.template « gen-xunit-runner « netcore - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c687ecafb65d26c1942bbda303398ef65c21209 (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
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>netcoreapp3.0</TargetFramework>
  </PropertyGroup>

  <ItemGroup>
    <Reference Include="xunit.core">
      <HintPath>#XUNIT_LOCATION#/xunit.core.dll</HintPath>
    </Reference>

    <Reference Include="xunit.assert">
      <HintPath>#XUNIT_LOCATION#/xunit.assert.dll</HintPath>
    </Reference>

    <Reference Include="CoreFx.Private.TestUtilities">
      <HintPath>#XUNIT_LOCATION#/CoreFx.Private.TestUtilities.dll</HintPath>
    </Reference>

    <Reference Include="System.Runtime.CompilerServices.Unsafe">
      <HintPath>#XUNIT_LOCATION#/System.Runtime.CompilerServices.Unsafe.dll</HintPath>
    </Reference>

    <Reference Include="Microsoft.DotNet.XUnitExtensions">
      <HintPath>#XUNIT_LOCATION#/Microsoft.DotNet.XUnitExtensions.dll</HintPath>
    </Reference>
  </ItemGroup>

  <ItemGroup>
    <Reference Include="#TEST_ASSEMBLY#">
      <HintPath>#TEST_ASSEMBLY_LOCATION#</HintPath>
    </Reference>
  </ItemGroup>
  
</Project>