Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Hoyos <juan.hoyos@microsoft.com>2020-10-21 02:34:38 +0300
committerGitHub <noreply@github.com>2020-10-21 02:34:38 +0300
commit5b4facb5743a4d40c0755a6440112b6b1447ec60 (patch)
treee90b3f0a966630c209f44c750ab4ea1232a6f5ed /eng/Signing.props
parent781077f059e1218f7605a2a4d5c0bf441bc4c60c (diff)
Fix missing signatures for Cross bitness DAC symbols (#43500)
* Unify paths used for cross-bit components * Pass down buildArchitecture for signing * Pass target properties to signing
Diffstat (limited to 'eng/Signing.props')
-rw-r--r--eng/Signing.props6
1 files changed, 3 insertions, 3 deletions
diff --git a/eng/Signing.props b/eng/Signing.props
index 707c3d7950f..471473fc7d9 100644
--- a/eng/Signing.props
+++ b/eng/Signing.props
@@ -37,9 +37,9 @@
<FileSignInfo Include="Mono.Cecil.Rocks.dll" CertificateName="3PartySHA2" />
</ItemGroup>
- <ItemGroup Condition="'$(CrossTargetComponentFolder)' != ''">
- <CoreCLRCrossTargetItemsToSign Include="$(CoreCLRArtifactsPath)$(CrossTargetComponentFolder)/sharedFramework/*.dll" />
- <CoreCLRCrossTargetItemsToSign Include="$(CoreCLRArtifactsPath)$(CrossTargetComponentFolder)/sharedFramework/*.exe" />
+ <ItemGroup Condition="'$(CoreCLRCrossTargetComponentDirName)' != ''">
+ <CoreCLRCrossTargetItemsToSign Include="$(CoreCLRArtifactsPath)$(CoreCLRCrossTargetComponentDirName)/sharedFramework/*.dll" />
+ <CoreCLRCrossTargetItemsToSign Include="$(CoreCLRArtifactsPath)$(CoreCLRCrossTargetComponentDirName)/sharedFramework/*.exe" />
</ItemGroup>
<ItemGroup Condition="'$(SignBinaries)' == 'true'">