summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dependencies.props3
-rw-r--r--dir.props3
2 files changed, 4 insertions, 2 deletions
diff --git a/dependencies.props b/dependencies.props
index 5a662ce64c..a661e93db8 100644
--- a/dependencies.props
+++ b/dependencies.props
@@ -11,7 +11,8 @@
</RestoreSources>
</PropertyGroup>
- <Import Project="eng/Versions.props" />
+ <!-- [ARCADE REMOVE] Versions.props is imported by Arcade SDK targets when building with Arcade -->
+ <Import Project="eng/Versions.props" Condition="'$(ArcadeBuild)' != 'true'" />
<!-- Source of truth for dependency tooling: the commit hash of the dotnet/versions master branch as of the last auto-upgrade. -->
<PropertyGroup>
diff --git a/dir.props b/dir.props
index d2a63e5ea7..60efbd763f 100644
--- a/dir.props
+++ b/dir.props
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
- <Import Project="dir.common.props" />
+ <!-- dir.common.props is imported by Directory.Build.props when building with Arcade -->
+ <Import Project="dir.common.props" Condition="'$(ArcadeBuild)' != 'true'" />
<!-- [ARCADE REMOVE] This entire file can be removed. Properties set by this file should be moved into
dir.common.props and Directory.Build.props as appropriate and projects should stop importing this. -->