The situation is as follows:
- I want to release the full source to a class library
- I want to release binaries as well, signed by me, with a key file I don't want to publish
- I will provide batch files, and pre-build stepts, that creates a new key file locally if not present, so that anyone can quickly start using the source code
- The test project needs reference to an internal class in the main project
- To get access to the internal class, I need to add a
[assembly: InternalsVisibleTo("...")]attribute to the main project AssemblyInfo.cs file - Since I'm signing the project output, I need to specify a PublicKey portion of that attribute
- This will then be bound to the key file, that I'm unwilling to publish
So, how do I solve this?
If I sign the main project output, and not the test library, and specify only the assembly name in the InternalsVisibleTo attribute, I get this compile-time error:
Error 1 Friend assembly reference 'Mercurial.Net.Tests' is invalid. Strong-name signed assemblies must specify a public key in their InternalsVisibleTo declarations. C:\Dev\VS.NET\Mercurial.Net\Mercurial.Net\Properties\AssemblyInfo.cs 22 31 Mercurial.Net
So apparently not signing the test project output isn't enough.
Is my only option to remove the settings that sign the projects, and modify the project files as part of my binaries build script? ie. hunt down the <SignAssembly>false</SignAssembly> element of the project file and modify it, before building?