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:
authorViktor Hofer <viktor.hofer@microsoft.com>2020-11-20 02:46:44 +0300
committerGitHub <noreply@github.com>2020-11-20 02:46:44 +0300
commit0f64477ae43de562f03acef041cbeba8b18cfe68 (patch)
treea16fe633a291fc3fb3843cd848cfbb569be1de2a /eng/Signing.props
parentb8516139558dbab4fed85a84b6f59c97c57a8e52 (diff)
Fix syntax error in Signing.props (#44971)
Diffstat (limited to 'eng/Signing.props')
-rw-r--r--eng/Signing.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/eng/Signing.props b/eng/Signing.props
index 3a1af40fc38..2d29ea85ea4 100644
--- a/eng/Signing.props
+++ b/eng/Signing.props
@@ -44,7 +44,7 @@
<FileExtensionSignInfo Include=".pkg" CertificateName="8003" />
<FileExtensionSignInfo Include=".deb;.rpm" CertificateName="LinuxSign" />
</ItemGroup>
- <ItemGroup Condition="'$(PrepareArtifacts) == 'true' and '$(PostBuildSign)' == 'true'">
+ <ItemGroup Condition="'$(PrepareArtifacts)' == 'true' and '$(PostBuildSign)' == 'true'">
<ItemsToSignWithPaths Include="$(DownloadDirectory)**/*.msi" />
<ItemsToSignWithPaths Include="$(DownloadDirectory)**/*.exe" />
<ItemsToSignWithPaths Include="$(DownloadDirectory)**/*.nupkg" />