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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dir.props6
1 files changed, 3 insertions, 3 deletions
diff --git a/dir.props b/dir.props
index e543bff0a9..72055e1c14 100644
--- a/dir.props
+++ b/dir.props
@@ -246,9 +246,9 @@
</PropertyGroup>
<!-- Properties related to multi-file mode for ILC tests -->
- <PropertyGroup>
- <!-- Only enable multi-file for Uapaot-Release-x64 for now -->
- <EnableMultiFileILCTests Condition="'$(TargetGroup)' == 'uapaot' And '$(ConfigurationGroup)' == 'Release' And '$(ArchGroup)' == 'x64'">true</EnableMultiFileILCTests>
+ <PropertyGroup Condition="'$(TargetGroup)' == 'uapaot'">
+ <!-- Only enable multi-file for Release-x64 and Debug-x86 for now -->
+ <EnableMultiFileILCTests Condition="'$(ConfigurationGroup)|$(ArchGroup)' == 'Release|x64' Or '$(ConfigurationGroup)|$(ArchGroup)' == 'Debug|x86'">true</EnableMultiFileILCTests>
</PropertyGroup>
<PropertyGroup>