AssemblyInfo

2012-01-10 Thread Matthias Wessendorf
Hi, is there a way to easily append (desired) attributes to the generated AssemblyInfo.cs file ? I'd like to have the following attributes in there: [assembly: InternalsVisibleTo(Mocks)] [assembly: InternalsVisibleTo(MockObjects)] Thx! -- Matthias Wessendorf blog:

Re: AssemblyInfo

2012-01-10 Thread Lars Corneliussen
Hi Matthias, thanks for submitting the issues. Also have a look at https://issues.apache.org/jira/browse/NPANDAY-475 _ Lars Am 10.01.2012 um 11:07 schrieb Matthias Wessendorf: using the assemblyInfo @parameter, like: assemblyInfo key1FOO/key1

Re: AssemblyInfo

2012-01-10 Thread Lars Corneliussen
: using the assemblyInfo @parameter, like: assemblyInfo key1FOO/key1 key2FOO/key2 /assemblyInfo gives me the following: [assembly: CustomStringAttribute(key1, FOO)] [assembly: CustomStringAttribute(key2, FOO)] Not quite