File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,16 @@ extends:
62
62
enableSourceBuild : true
63
63
helixRepo : dotnet/command-line-api
64
64
timeoutInMinutes : 180 # increase timeout since BAR publishing might wait a long time
65
- jobs :
66
- - job : Windows
65
+ templateContext :
67
66
sdl :
68
67
binskim :
69
- analyzeTargetGlob : +:f|artifacts\bin\**\*.dll;+:f|artifacts\bin\**\*.exe;
68
+ analyzeTargetGlob : +:f|artifacts\bin\**\*.dll;+:f|artifacts\bin\**\*.exe;-:f|artifacts\bin\**\xunit*.dll;-:f|artifacts\bin\**\verify*.dll;
69
+ # WORKAROUND: BinSkim requires the folder exist prior to scanning.
70
+ preSteps :
71
+ - powershell : New-Item -ItemType Directory -Path $(Build.SourcesDirectory)/artifacts/bin -Force
72
+ displayName : Create artifacts/bin directory
73
+ jobs :
74
+ - job : Windows
70
75
pool :
71
76
name : NetCore1ESPool-Internal
72
77
demands : ImageOverride -equals windows.vs2022.amd64
You can’t perform that action at this time.
0 commit comments