I'm trying to code a project that can accept plugins. I've got my interface set up and working and was trying to create a template project for my plugins. I figured it would be easier instead of setting a variable like myName = "Plugin" to just call My.Application.Info.Title (and other properites there)

Now the problem is apparently the plugin is picking up the application.info of my main program when I load it via the interface. My Plugin Title is TestPlugin, and my main app is CS Accounting, when I have the property in plugin coded like this

Code:
ReadOnly Property Name() As String Implements IPluginInterface.IPlugin.IPluginInterface.Name
     Get
          Return My.Application.Info.Title
     End Get
End Property
it returns CS Accounting. Is there a way to get it return its own Title instead of the main application title?

Thanks!