Hi everyone,
I've been writing a disassambler component for BTS2006. The component works fine with one exception. The root node of the outcoming xml is not in the target namespace. I found some examples for c# where you can assign the namespace to a class which will be serialized like this
[XmlType("testResults",
Namespace = "urn:testResults.namespace.com")]
public class TestResults
{
}
I searched for examples in vb but there seems to be nothing out there. Can anyone point me to a solution for this?