Why is it including My and My.Resource?
Why is it including My and My.Resource?
Hello again,
I have two different DLLs that I've made. The first dll is showing alright. But my second dll is showing not only the Classes it contains but also the My and My.Resource aswell, like following :
Module Acceptable Unvisited Functions Function Coverage SubSystem.DLL 80.0 % 22 24.1 % . . Namespace / Classes Farek.Common 1 87.5 % . . SubSystem 1 87.5 % . . My 18 0.0 % . MyComputer 1 0.0 % . MyProject 14 0.0 % . MyWebServices 7 0.0 % . ThreadSafeObjectProvider`1 2 0.0 % . MySettings 2 0.0 % . MySettingsProperty 1 0.0 % . My.Resources 3 0.0 % . Resources 3 0.0 %
I really don't want it to include the My and My.Resources in the % calculation. Im not going to use them anyway.
The difference between the two DLLs is that with the second one I've Deleted the Root namespace, under Properties->Application->RootNamespace, and added a new namespace in the code like :
...........................ISubSystem.vb...........................
Namespace Farek.Common
Public Interface ISubSystem
Sub Start()
Sub [Stop]()
End Interface
End Namespace
...........................SubSystem.vb...........................
Namespace Farek.Common
Class SubSystem
Implements ISubSustem
......
End Class
End Namespace
What is causing this to happen?
/Farek