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

gh53564.csproj « eventcounter « tracing « tests « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c2b810ee7c115909dc4b66bc77180e4195e6628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <CLRTestKind>BuildAndRun</CLRTestKind>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <CLRTestPriority>0</CLRTestPriority>
    <GCStressIncompatible>true</GCStressIncompatible>
    <!-- This test is timing sensitive and JIT timing affects the results of the test -->
    <JitOptimizationSensitive>true</JitOptimizationSensitive>
    <!-- This test has a secondary thread with an infinite loop -->
    <UnloadabilityIncompatible>true</UnloadabilityIncompatible>
  </PropertyGroup>
  <ItemGroup>
    <Compile Include="gh53564.cs" />
    <ProjectReference Include="../common/common.csproj" />
  </ItemGroup>
</Project>