File tree Expand file tree Collapse file tree 5 files changed +22
-6
lines changed Expand file tree Collapse file tree 5 files changed +22
-6
lines changed Original file line number Diff line number Diff line change 99 </Dependency >
1010 </ProductDependencies >
1111 <ToolsetDependencies >
12- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 9.0.0-beta.25415 .3" >
12+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 9.0.0-beta.25428 .3" >
1313 <Uri >https://github.com/dotnet/arcade</Uri >
14- <Sha >d87d66c43d0660e5c8e84e667c5c8a8140bce888 </Sha >
14+ <Sha >5fe939db0a156be6f10e17c105b1842c0c8c8bdc </Sha >
1515 </Dependency >
1616 <!-- Intermediate is necessary for source build. -->
17- <Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 9.0.0-beta.25415 .3" >
17+ <Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 9.0.0-beta.25428 .3" >
1818 <Uri >https://github.com/dotnet/arcade</Uri >
19- <Sha >d87d66c43d0660e5c8e84e667c5c8a8140bce888 </Sha >
19+ <Sha >5fe939db0a156be6f10e17c105b1842c0c8c8bdc </Sha >
2020 <SourceBuild RepoName =" arcade" ManagedOnly =" true" />
2121 </Dependency >
2222 </ToolsetDependencies >
Original file line number Diff line number Diff line change @@ -33,6 +33,9 @@ parameters:
3333 # container and pool.
3434 platform : {}
3535
36+ # Optional list of directories to ignore for component governance scans.
37+ componentGovernanceIgnoreDirectories : []
38+
3639 is1ESPipeline : ' '
3740
3841 # If set to true and running on a non-public project,
9396 parameters :
9497 is1ESPipeline : ${{ parameters.is1ESPipeline }}
9598 platform : ${{ parameters.platform }}
99+ componentGovernanceIgnoreDirectories : ${{ parameters.componentGovernanceIgnoreDirectories }}
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ parameters:
2121 # one job runs on 'defaultManagedPlatform'.
2222 platforms : []
2323
24+ # Optional list of directories to ignore for component governance scans.
25+ componentGovernanceIgnoreDirectories : []
26+
2427 is1ESPipeline : ' '
2528
2629 # If set to true and running on a non-public project,
4750 is1ESPipeline : ${{ parameters.is1ESPipeline }}
4851 jobNamePrefix : ${{ parameters.jobNamePrefix }}
4952 platform : ${{ platform }}
53+ componentGovernanceIgnoreDirectories : ${{ parameters.componentGovernanceIgnoreDirectories }}
5054 enableInternalSources : ${{ parameters.enableInternalSources }}
5155
5256- ${{ if eq(length(parameters.platforms), 0) }} :
5559 is1ESPipeline : ${{ parameters.is1ESPipeline }}
5660 jobNamePrefix : ${{ parameters.jobNamePrefix }}
5761 platform : ${{ parameters.defaultManagedPlatform }}
62+ componentGovernanceIgnoreDirectories : ${{ parameters.componentGovernanceIgnoreDirectories }}
5863 enableInternalSources : ${{ parameters.enableInternalSources }}
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ parameters:
1111 # for details. The entire object is described in the 'job' template for simplicity, even though
1212 # the usage of the properties on this object is split between the 'job' and 'steps' templates.
1313 platform : {}
14+
15+ # Optional list of directories to ignore for component governance scans.
16+ componentGovernanceIgnoreDirectories : []
17+
1418 is1ESPipeline : false
1519
1620steps :
@@ -126,5 +130,8 @@ steps:
126130 parameters :
127131 displayName : Component Detection (Exclude upstream cache)
128132 is1ESPipeline : ${{ parameters.is1ESPipeline }}
129- componentGovernanceIgnoreDirectories : ' $(System.DefaultWorkingDirectory)/artifacts/sb/src/artifacts/obj/source-built-upstream-cache'
133+ ${{ if eq(length(parameters.componentGovernanceIgnoreDirectories), 0) }} :
134+ componentGovernanceIgnoreDirectories : ' $(System.DefaultWorkingDirectory)/artifacts/sb/src/artifacts/obj/source-built-upstream-cache'
135+ ${{ else }} :
136+ componentGovernanceIgnoreDirectories : ${{ join(',', parameters.componentGovernanceIgnoreDirectories) }}
130137 disableComponentGovernance : ${{ eq(variables['System.TeamProject'], 'public') }}
Original file line number Diff line number Diff line change 44 },
55 "msbuild-sdks" : {
66 "Microsoft.Build.NoTargets" : " 3.7.0" ,
7- "Microsoft.DotNet.Arcade.Sdk" : " 9.0.0-beta.25415 .3"
7+ "Microsoft.DotNet.Arcade.Sdk" : " 9.0.0-beta.25428 .3"
88 }
99}
You can’t perform that action at this time.
0 commit comments