Skip to content

Commit d6eb354

Browse files
authored
Sync list of short stacks for VMR build (#110246)
1 parent c6bebf0 commit d6eb354

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

eng/DotNetBuild.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<LogVerbosity Condition="'$(LogVerbosity)' == ''">minimal</LogVerbosity>
2424
</PropertyGroup>
2525

26+
<!-- Keep this list in sync with https://github.com/dotnet/sdk/blob/main/src/SourceBuild/content/Directory.Build.props#L23 -->
2627
<PropertyGroup Label="ShortStacks">
2728
<ShortStack Condition="'$(TargetOS)' == 'wasi'">true</ShortStack>
2829
<ShortStack Condition="'$(TargetOS)' == 'browser'">true</ShortStack>
@@ -33,6 +34,11 @@
3334
<ShortStack Condition="'$(TargetOS)' == 'maccatalyst'">true</ShortStack>
3435
<ShortStack Condition="'$(TargetOS)' == 'android'">true</ShortStack>
3536
<ShortStack Condition="'$(TargetOS)' == 'linux-bionic'">true</ShortStack>
37+
<!-- NativeAOT builds are short -->
38+
<ShortStack Condition="'$(DotNetBuildRuntimeNativeAOTRuntimePack)' == 'true'">true</ShortStack>
39+
<!-- Mono LLVM builds are short -->
40+
<ShortStack Condition="'$(MonoEnableLLVM)' == 'true' or '$(MonoAOTEnableLLVM)' == 'true'">true</ShortStack>
41+
<!-- Mono AOT cross compiler builds are short -->
3642
<ShortStack Condition="'$(DotNetBuildMonoCrossAOT)' == 'true'">true</ShortStack>
3743
</PropertyGroup>
3844

0 commit comments

Comments
 (0)