Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Commit

Permalink
Added signing to missing projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Omar Tawfik committed Jun 8, 2016
1 parent a054c3c commit f4cac92
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion FSharp.Editor.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,17 @@
<Reference Include="Microsoft.VisualStudio.Shell.$(VisualStudioVersion)" />
<Reference Include="Microsoft.VisualStudio.TextManager.Interop" />
</ItemGroup>

<Import Project="$(FSharpSourcesRoot)\FSharpSource.targets" />
<Import Project="$(VsSdkTargetsDir)\Microsoft.VsSDK.targets" />
<Import Project="$(VsSdkTargetsDir)\Microsoft.VsSDK.targets" />

<Target Name="GatherBinariesToBeSigned" AfterTargets="Localize">
<ItemGroup>
<BinariesToBeSigned Include="$(OutDir)$(AssemblyName).dll" />
<FilesToSign Include="@(BinariesToBeSigned)">
<Authenticode>Microsoft</Authenticode>
<StrongName>StrongName</StrongName>
</FilesToSign>
</ItemGroup>
</Target>
</Project>

0 comments on commit f4cac92

Please sign in to comment.