This test is failing:
public class Type_names_are_partially_qualified
{
private readonly IReflection reflection = new DefaultReflection();
[Fact]
public void When_type_is_generic()
{
string name = reflection.GetAssemblyQualifiedNameWithoutVersion
(typeof (Generic<Parameter>));
Assert.Equal("Rhino.ServiceBus.Tests.Bugs.Generic`1
[Rhino.ServiceBus.Tests.Bugs.Parameter, Rhino.ServiceBus.Tests],
Rhino.ServiceBus.Tests",
name);
}
}
public class Generic<T>
{
}
public class Parameter
{
}
This tripped me up because while I am debugging, the service bus has
signed assembies (hassle free thanks to nant + CI) but the UI does not
(hassle prone thanks to VS). I should be able to finish a patch soon.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Rhino Tools Dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rhino-tools-dev?hl=en
-~----------~----~----~----~------~----~------~--~---