Skip to content

Commit 12c1566

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20230721.1 (#1073)
[main] Update dependencies from dotnet/arcade - Coherency Updates: - Microsoft.DotNet.XliffTasks: from 1.0.0-beta.23360.1 to 1.0.0-beta.23368.1 (parent: Microsoft.DotNet.Arcade.Sdk)
1 parent e6392ab commit 12c1566

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

eng/Version.Details.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@
2525
</Dependency>
2626
</ProductDependencies>
2727
<ToolsetDependencies>
28-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23364.2">
28+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23371.1">
2929
<Uri>https://github.com/dotnet/arcade</Uri>
30-
<Sha>60ea5b2eca5af06fc63b250f8669d2c70179b18c</Sha>
30+
<Sha>602351e3681015ea789b2aeaa7b2a9156a8baf38</Sha>
3131
<SourceBuild RepoName="arcade" ManagedOnly="true" />
3232
</Dependency>
3333
<Dependency Name="Microsoft.SourceLink.GitHub" Version="8.0.0-beta.23361.2" CoherentParentDependency="Microsoft.DotNet.Arcade.Sdk">
3434
<Uri>https://github.com/dotnet/sourcelink</Uri>
3535
<Sha>d2e046aec870a5a7601cc51c5607f34463cc2d42</Sha>
3636
<SourceBuild RepoName="sourcelink" ManagedOnly="true" />
3737
</Dependency>
38-
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="1.0.0-beta.23360.1" CoherentParentDependency="Microsoft.DotNet.Arcade.Sdk">
38+
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="1.0.0-beta.23368.1" CoherentParentDependency="Microsoft.DotNet.Arcade.Sdk">
3939
<Uri>https://github.com/dotnet/xliff-tasks</Uri>
40-
<Sha>a171b61473272e5a6d272117963864ba958a012a</Sha>
40+
<Sha>3aa0b2b84cab7d94b9136547563d027fd78e82a6</Sha>
4141
<SourceBuild RepoName="xliff-tasks" ManagedOnly="true" />
4242
</Dependency>
4343
</ToolsetDependencies>

eng/common/sdl/configure-sdl-tool.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ try {
9393
}
9494
'binskim' {
9595
if ($targetDirectory) {
96-
$tool.Args += "`"Target < $TargetDirectory\**`""
96+
# Binskim crashes due to specific PDBs. GitHub issue: https://github.com/microsoft/binskim/issues/924.
97+
# We are excluding all `_.pdb` files from the scan.
98+
$tool.Args += "`"Target < $TargetDirectory\**;-:file|$TargetDirectory\**\_.pdb`""
9799
}
98100
$tool.Args += $BinskimAdditionalRunConfigParams
99101
}

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"dotnet": "8.0.100-preview.6.23330.14"
44
},
55
"msbuild-sdks": {
6-
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23364.2",
6+
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23371.1",
77
"Microsoft.Build.NoTargets": "3.7.0"
88
}
99
}

0 commit comments

Comments
 (0)