-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathILVerification.Tests.csproj
31 lines (27 loc) · 1.09 KB
/
ILVerification.Tests.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputPath>$(BaseOutputPathWithConfig)ilverify\</OutputPath>
<CLRTestPriority>1</CLRTestPriority>
<!-- The test uses xunit directly and it fails to find the test assembly for some reason -->
<UnloadabilityIncompatible>true</UnloadabilityIncompatible>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Include="ILMethodTester.cs" />
<Compile Include="ILTypeVerificationTester.cs" />
<Compile Include="TestDataLoader.cs" />
<Compile Include="..\Common\XunitBase.cs" />
</ItemGroup>
<Import Project="..\..\coreclr\tools\ILVerification\ILVerification.projitems" />
<ItemGroup>
<PackageReference Include="xunit" Version="$(XUnitVersion)" />
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="ILTests\*.ilproj">
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
<OutputItemType>Content</OutputItemType>
</ProjectReference>
</ItemGroup>
</Project>