Announcement

Collapse
No announcement yet.

Namespace or type specified in the Imports 'System.Core' doesn't contain any public m

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Namespace or type specified in the Imports 'System.Core' doesn't contain any public m

    Namespace or type specified in the Imports 'System.Core' doesn't contain any public member or cannot be found. Make sure the namespace or the type is defined and contains at least one public member. Make sure the imported element name doesn't use any aliases.

    Type 'List' is not defined.

    Think that the System.Collections.Generic.List is causing it.

    I have included the following line in the settings.ini:
    ScriptingReferences=System.Web;System.web.dll;System;System. Collections.dll;System.Collections;System.Collections.Generi c;System.Core;System.Xml;System.Xml.dll;System.Xml.Linq.dll; System.Xml.Linq;

    and copied System.Xml.Linq.dll, System.Xml.dll, and System.Collections.dll to the HS bin folder.

    #2
    One of the List references didn't have the full name in front of it

    System.Collections;System.Collections.Generic.List myList=new System.Collections;System.Collections.Generic.List();

    Comment

    Working...
    X