[interp] Optimize ldsflda opcode
[mono-project.git] / netcore / gen-xunit-runner / gen-test.csproj.template
blob8c687ecafb65d26c1942bbda303398ef65c21209
1 <Project Sdk="Microsoft.NET.Sdk">
3   <PropertyGroup>
4     <OutputType>Exe</OutputType>
5     <TargetFramework>netcoreapp3.0</TargetFramework>
6   </PropertyGroup>
8   <ItemGroup>
9     <Reference Include="xunit.core">
10       <HintPath>#XUNIT_LOCATION#/xunit.core.dll</HintPath>
11     </Reference>
13     <Reference Include="xunit.assert">
14       <HintPath>#XUNIT_LOCATION#/xunit.assert.dll</HintPath>
15     </Reference>
17     <Reference Include="CoreFx.Private.TestUtilities">
18       <HintPath>#XUNIT_LOCATION#/CoreFx.Private.TestUtilities.dll</HintPath>
19     </Reference>
21     <Reference Include="System.Runtime.CompilerServices.Unsafe">
22       <HintPath>#XUNIT_LOCATION#/System.Runtime.CompilerServices.Unsafe.dll</HintPath>
23     </Reference>
25     <Reference Include="Microsoft.DotNet.XUnitExtensions">
26       <HintPath>#XUNIT_LOCATION#/Microsoft.DotNet.XUnitExtensions.dll</HintPath>
27     </Reference>
28   </ItemGroup>
30   <ItemGroup>
31     <Reference Include="#TEST_ASSEMBLY#">
32       <HintPath>#TEST_ASSEMBLY_LOCATION#</HintPath>
33     </Reference>
34   </ItemGroup>
35   
36 </Project>