We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d40718 commit eaa3ddcCopy full SHA for eaa3ddc
Tasks/ANT/ant.ps1
@@ -140,7 +140,10 @@ if ($isCoverageEnabled)
140
141
# Create temp copy - requried in case of TFVC
142
Copy-Item $antBuildFile "$antBuildFile.tmp" -Force -ErrorAction SilentlyContinue
143
- Set-ItemProperty $antBuildFile -Name Attributes -Value Normal -Force -ErrorAction SilentlyContinue
+ Get-ChildItem -LiteralPath $env:BUILD_SOURCESDIRECTORY -Filter '*.xml' -Recurse |
144
+ ForEach-Object {
145
+ Set-ItemProperty -LiteralPath $_.FullName -Name Attributes -Value Normal -Force -ErrorAction SilentlyContinue
146
+ }
147
148
try
149
{
0 commit comments