Reputation: 130
<%@ Import Namespace="project.name.folder"%>
<%@ Import Namespace="project" %>`
In my Projectmap exists many Projectclasses. One is called project and another is called project.name.
If i compile the ASP.NET Program it says:
the type or namespace name 'name' in namespace 'project' could not be found (are you missing a using directive or an assembly reference?)
The problem began since i changed the Programmplattform to x64. The compiler thinks that .folder is a folder from the other Project 'project' but its a folder from Project 'project.name'.
Tried Solutions:
Upvotes: 0
Views: 3512
Reputation: 239
Based on your screen and your question:
<%@ Import Namespace="project.name.folder"%>
because that namespace does not exists.Upvotes: 2