forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstackoverflowtester.csproj
More file actions
23 lines (23 loc) · 1.07 KB
/
Copy pathstackoverflowtester.csproj
File metadata and controls
23 lines (23 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Needed for GCStressIncompatible, SuperPMICollectIncompatible -->
<RequiresProcessIsolation>true</RequiresProcessIsolation>
<Optimize>false</Optimize>
<!-- Fails in many GCStress jobs. https://github.com/dotnet/runtime/issues/46279 -->
<GCStressIncompatible>true</GCStressIncompatible>
<!-- Exception handling in this test is incompatible with SuperPMI collection. See https://github.com/dotnet/runtime/issues/108215. -->
<SuperPMICollectIncompatible>true</SuperPMICollectIncompatible>
<!-- needs triage -->
<DisableProjectBuild Condition="'$(RuntimeFlavor)' == 'mono'">true</DisableProjectBuild>
<!-- Requires corerun -->
<NativeAotIncompatible>true</NativeAotIncompatible>
<!-- https://github.com/dotnet/runtime/issues/127899 -->
<InterpreterIncompatible>true</InterpreterIncompatible>
</PropertyGroup>
<ItemGroup>
<Compile Include="stackoverflowtester.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(TestLibraryProjectPath)" />
</ItemGroup>
</Project>