We are using Msbuild to build our Wix projects. Due to various issues , few times assemblies specified in wix were just delay signed. When it was installed in GAC it failed.

Is there any way to verify strong name signing verification as prebuild activity in wix?

I am using sn -vf "assembly" to do strong name verification.

I want to do strong name verification only for dlls which will be packed inside wix msi( in other words, assemblies specified in wxs file)

How to do it msbuild?

link|improve this question

80% accept rate
feedback

1 Answer

  • A quick solution is adding a BeforeBuild event that calls sn.exe:

Open your .wixproj file and add:

<Target Name="BeforeBuild">
<ItemGroup>
    <AssemblyToSign Include="C:\SignedAssembly1.dll"/>
    <AssemblyToSign Include="C:\SignedAssembly2.dll"/>      
</ItemGroup>
     <Exec Command="sn -q -vf %(AssemblyToSign.Identity)" />
</Target>

This will fail your build once an assembly fails verification.


  • Another solution is use MSBuild Extension Pack's Signing class:

Once again, this will fail your build on failed verification:

<Target Name="BeforeBuild">
<ItemGroup>
        <AssemblyToSign Include="C:\SignedAssembly1.dll"/>
        <AssemblyToSign Include="C:\SignedAssembly2.dll"/>      
</ItemGroup>
 <MSBuild.ExtensionPack.Framework.Signing 
         TaskAction="Sign" 
         ToolPath="C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin" 
         KeyFile="D:\key.snk" 
         Assemblies="@(AssemblyToSign)" />
</Target>

In order to use it you must add a reference to the Extension Pack assembly:

<PropertyGroup>
    <ExtensionTasksPath Condition="Exists('$(MSBuildProjectDirectory)\..\..\Common')">$(MSBuildProjectDirectory)\..\..\Common</ExtensionTasksPath>
</PropertyGroup>
<UsingTask AssemblyFile="$(ExtensionTasksPath)\MSBuild.ExtensionPack.dll" TaskName="MSBuild.ExtensionPack.Framework.Signing"/>
link|improve this answer
Thanks buddy for the nice information. But usually in build, people won't directly change the project file. They will have separate script in which they will mention the list of wixproj.Number of wixproj to be build for project may be huge and editing each file is not practical – Samselvaprabu Jan 10 at 2:56
I provided a possible solution. Certainly you can take the BeforeBuild part to your main build script. – KMoraz Jan 10 at 8:09
thanks buddy. I will try and when i complete that you can add it as part of answer. Once i tested it i will accept it as an answer – Samselvaprabu Jan 10 at 8:21
Buddy, In this case i need to specify each and every dll. Wxs file will have list of dlls to be part of the msi. That needs to be obtained through build script and it should be verified. – Samselvaprabu Jan 11 at 5:35
You need to parse the wxs, look for the File elements and record all the Source values. You can use PowerShell jamesmccaffrey.wordpress.com/2007/12/02/…;. – KMoraz Jan 11 at 7:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.