Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Fix public key name
Browse files Browse the repository at this point in the history
  • Loading branch information
shana committed Nov 2, 2017
1 parent 24a3b9f commit 3e0f756
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/common/signing.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<DelaySign>false</DelaySign>
</PropertyGroup>

<PropertyGroup Condition="'$(BuildType)' != 'Internal' and Exists('..\..\signingkey.snk')">
<AssemblyOriginatorKeyFile>..\..\publickey.snk</AssemblyOriginatorKeyFile>
<PropertyGroup Condition="'$(BuildType)' != 'Internal' and Exists('..\..\signingkey')">
<AssemblyOriginatorKeyFile>..\..\signingkey.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
</PropertyGroup>
Expand All @@ -21,8 +21,8 @@
<Link>key.snk</Link>
</None>

<None Include="..\..\signingkey.snk" Condition="'$(BuildType)' != 'Internal' and Exists('..\..\signingkey.snk')">
<Link>signingkey.snk</Link>
<None Include="..\..\signingkey" Condition="'$(BuildType)' != 'Internal' and Exists('..\..\signingkey')">
<Link>signingkey</Link>
</None>
</ItemGroup>
</Project>

0 comments on commit 3e0f756

Please sign in to comment.