File tree 2 files changed +4
-0
lines changed
coreclr/tools/aot/crossgen2
tools/illink/src/ILLink.Tasks/build
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 53
53
<!-- Use .dwarf files instead of .dsym files since our symbol exporting may not safely handle folders. -->
54
54
<NativeSymbolExt Condition =" '$(_IsApplePlatform)' == 'true'" >.dwarf</NativeSymbolExt >
55
55
<DsymUtilOptions Condition =" '$(_IsApplePlatform)' == 'true'" >--flat</DsymUtilOptions >
56
+ <!-- Prevent getting DynamicCodeSupport=true default from ILLink targets that are imported
57
+ with the Sdk.targets import above, before Native AOT defaults get a chance to set it -->
58
+ <DynamicCodeSupport >false</DynamicCodeSupport >
56
59
</PropertyGroup >
57
60
58
61
<ItemGroup Condition =" '$(NativeAotSupported)' == 'true'" >
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ Copyright (c) .NET Foundation. All rights reserved.
55
55
<_ComObjectDescriptorSupport Condition =" '$(_ComObjectDescriptorSupport)' == ''" >false</_ComObjectDescriptorSupport >
56
56
<_DesignerHostSupport Condition =" '$(_DesignerHostSupport)' == ''" >false</_DesignerHostSupport >
57
57
<_DefaultValueAttributeSupport Condition =" '$(_DefaultValueAttributeSupport)' == ''" >false</_DefaultValueAttributeSupport >
58
+ <DynamicCodeSupport Condition =" '$(DynamicCodeSupport)' == ''" >true</DynamicCodeSupport >
58
59
<UseSystemResourceKeys Condition =" '$(UseSystemResourceKeys)' == ''" >false</UseSystemResourceKeys >
59
60
</PropertyGroup >
60
61
You can’t perform that action at this time.
0 commit comments