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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWes Haggard <Wes.Haggard@microsoft.com>2017-04-14 22:05:09 +0300
committerWes Haggard <Wes.Haggard@microsoft.com>2017-04-14 22:17:38 +0300
commit5cf2067e55767ce6722162e8dc922b01b0379555 (patch)
tree21190118307738df0d4df55f612a66e75ba66eb0 /src/shims/shims.proj
parente665135189d0e137f4fe8f5005201d8ba84b7603 (diff)
Add manual step to sign with open key using sn
This change requires that sn is only the path and if it isn't then it the signing will fail. We should consider getting sn from a package in a future iteration to make this more robust. Enable signing of netstandard shim now that we sign things with Open key
Diffstat (limited to 'src/shims/shims.proj')
-rw-r--r--src/shims/shims.proj4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/shims/shims.proj b/src/shims/shims.proj
index c1857068dc..6515b46f93 100644
--- a/src/shims/shims.proj
+++ b/src/shims/shims.proj
@@ -57,15 +57,11 @@
StrongNameSig="%(NetFxContracts.StrongNameSig)"
MarkerFile="$(GenFacadesOutputPath)%(NetFxContracts.Filename)%(NetFxContracts.Extension).requires_signing" />
- <!--
- Currently we don't have a way to fully sign with the open key as part of our signing step so disabling these for now.
- See issue https://github.com/dotnet/corefx/issues/17494
<WriteSigningRequired
Condition="'@(NETStandardContracts)' != '' and '$(SkipSigning)' != 'true' and '$(SignType)' != 'oss'"
AuthenticodeSig="Microsoft"
StrongNameSig="Open"
MarkerFile="$(GenFacadesOutputPath)%(NETStandardContracts.Filename)%(NETStandardContracts.Extension).requires_signing" />
- -->
<Touch Files="$(GenFacadesSemaphoreFile)" AlwaysCreate="true" />
</Target>