How to : sign the assembly with a strong name key file in WP7 class library project?

 

Just add it to the .csproj like you normally would. The UI just isn’t there.

 

For instance, in your release build,

    <SignAssembly>True</SignAssembly>

    <AssemblyOriginatorKeyFile>..\..\SilverlightMobile2048.snk</AssemblyOriginatorKeyFile>

    <DelaySign>True</DelaySign>

    <ValidateXaml>False</ValidateXaml>

 

你可能感兴趣的:(assembly)