File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/Microsoft.DotNet.Arcade.Sdk/tools Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 137137 <_CommonProps Include =" VersionsPropsPath=$(VersionsPropsPath)" />
138138
139139 <!--
140- When building in source-only or product scenarios, some projects may have set ExcludeFromSourceBuild=true or ExcludeFromDotNetBuild.
140+ When building in source-only or product scenarios, some projects may have set ExcludeFromSourceOnlyBuild or ExcludeFromDotNetBuild to true .
141141 NuGet Restore task reports a warning for such projects, which we suppress here.
142142 -->
143143 <_CommonProps Include =" DisableWarnForInvalidRestoreProjects=true" Condition =" '$(DotNetBuild)' == 'true'" />
Original file line number Diff line number Diff line change 33
44 <!-- This file sets properties that enable skipping of a project build if desired.
55 Cases where we might skip include:
6- - Source-build mode and "ExcludeFromSourceBuild " is set.
6+ - Source-build mode and "ExcludeFromSourceOnlyBuild " is set.
77 - Non source-build mode and "ExcludeFromBuild" is set
88 - Target filtering is used and the target filters set "ExcludeFromBuild".
99 - .NET product build (DotNetBuild) and "ExcludeFromDotNetBuild" is set.
3030 <!-- Exclude test and test utility projects from source-only and .NET non-source only product builds by default. -->
3131 <PropertyGroup Condition =" '$(IsTestProject)' == 'true' or '$(IsTestUtilityProject)' == 'true'" >
3232 <ExcludeFromSourceOnlyBuild Condition =" '$(ExcludeFromSourceOnlyBuild)' == '' and '$(DotNetBuildTests)' != 'true'" >true</ExcludeFromSourceOnlyBuild >
33- <ExcludeFromSourceBuild Condition =" '$(ExcludeFromSourceBuild)' == '' and '$(DotNetBuildTests)' != 'true'" >true</ExcludeFromSourceBuild >
3433
3534 <ExcludeFromDotNetBuild Condition =" '$(ExcludeFromDotNetBuild)' == '' and '$(DotNetBuildTests)' != 'true'" >true</ExcludeFromDotNetBuild >
3635 </PropertyGroup >
You can’t perform that action at this time.
0 commit comments