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

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate McMaster <nate.mcmaster@microsoft.com>2018-12-14 23:05:30 +0300
committerNate McMaster <nate.mcmaster@microsoft.com>2018-12-14 23:05:30 +0300
commitcb5458e87062eddb224c1695b7081c41985fec10 (patch)
tree350365d8293eb17624d8c651f076411fed38cbbb
parent6402a6a971e1987b80939a355d06bf1530b95a9e (diff)
Exclude ancm.mof from code signing
This file is not signable. The sign tool treats .mof as a potential signing candidate by default, even though most .mof files are not signable.
-rw-r--r--build/CodeSign.props3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/CodeSign.props b/build/CodeSign.props
index 5b48abcb11..c5e12409da 100644
--- a/build/CodeSign.props
+++ b/build/CodeSign.props
@@ -71,6 +71,9 @@
<FilesToSign Include="aspnetcorev2_inprocess.dll" Certificate="$(AssemblySigningCertName)" Container="Microsoft.AspNetCore.App" />
<FilesToSign Include="aspnetcorev2_outofprocess.dll" Certificate="$(AssemblySigningCertName)" Container="Microsoft.AspNetCore.App" />
+ <!-- This is a text file which doesn't need to be code signed, even though some .mof files can be signed. -->
+ <FilesToExcludeFromSigning Include="ancm.mof" />
+
<!-- These files came from partner teams. They have to be re-signed because we crossgen them and redistributable them in our installers. -->
<!-- Microsoft.AspNetCore.All -->