Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion eng/Signing.props
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
<RedistNetCorePath>$(BaseRedistNetCorePath)$(TargetRuntimeIdentifier)\</RedistNetCorePath>
</PropertyGroup>

<ItemGroup Label="Catalog signing">
<!-- Sign catalog files that cover customer-modifiable template content -->
<FileExtensionSignInfo Include=".cat" CertificateName="Microsoft400" />
</ItemGroup>

<ItemGroup Label="Code sign exclusions">
<!-- We don't produce font files. We rebundle some for using the web browser, so they do not need to be signed. -->
<FileExtensionSignInfo Update=".otf" CertificateName="None" />
Expand All @@ -36,7 +41,8 @@
<FileSignInfo Include="ancm.mof" CertificateName="None" />
<!-- Exclude the apphost because this is expected to be code-signed by customers after the SDK modifies it. -->
<FileSignInfo Include="apphost.exe" CertificateName="None" />
<!-- We don't need to code sign .js files because they are not used in Windows Script Host. -->
<!-- Customer-modifiable template files: skip Authenticode because users edit these after
project creation. Covered by catalog signing instead (see .cat entry above). -->
<FileExtensionSignInfo Update=".js" CertificateName="None" />

<!--
Expand Down
Loading