forked from dotnet/aspnetcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[main] Update dependencies from dotnet/arcade (dotnet#46512)
[main] Update dependencies from dotnet/arcade - Attempt to move ExcludeFromBuild logic earlier - Set cross targeting build common targets
- Loading branch information
1 parent
63a0251
commit e655394
Showing
8 changed files
with
51 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<!-- Only build Microsoft.AspNetCore.App, Microsoft.AspNetCore.App.Ref, ref/ assemblies, and ProjectTemplates in source build. --> | ||
<!-- Analyzer package are needed in source build for WebSDK --> | ||
<ExcludeFromSourceBuild | ||
Condition="'$(ExcludeFromSourceBuild)' == '' and | ||
'$(DotNetBuildFromSource)' == 'true' and | ||
'$(IsAspNetCoreApp)' != 'true' and | ||
'$(MSBuildProjectName)' != '$(TargetingPackName)' and | ||
'$(IsAnalyzersProject)' != 'true' and | ||
'$(IsProjectTemplateProject)' != 'true'">true</ExcludeFromSourceBuild> | ||
|
||
<!-- If the user has specified that they want to skip building any test related projects with SkipTestBuild, | ||
suppress all targets for TestProjects using ExcludeFromBuild. --> | ||
<ExcludeFromBuild Condition="'$(IsPackable)' != 'true' and | ||
'$(SkipTestBuild)' == 'true' and | ||
($(IsTestProject) or | ||
'$(IsTestAssetProject)' == 'true' or | ||
'$(IsBenchmarkProject)' == 'true' or | ||
'$(IsSampleProject)' == 'true' or | ||
'$(IsSpecificationTestProject)' == 'true' or | ||
'$(IsMicrobenchmarksProject)' == 'true')">true</ExcludeFromBuild> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters