I have a C# solution composed of several projects in Visual Studio 2010. One is a "Test" project (I'll call it "PrjTest"), the other is a Windows Forms Application project (I'll call it "PrjForm"). There is also a third project referenced by PrjForm, which it is able to reference and use successfully.

PrjForm references PrjTest, and PrjForm has a class with a using statement:

using PrjTest;
  1. Reference has been correctly added
  2. using statement is correctly in place
  3. Spelling is correct
  4. PrjTest builds successfully
  5. PrjForm almost builds, but breaks on the using PrjTest; line with the error:

The type or namespace name 'PrjTest' could not be found (are you missing a using directive or an assembly reference?)

I've tried the following to resolve this:

  1. Removed Resharper (since Resharper had no trouble recognizing the referenced project, I thought it might be worth a shot)
  2. Removed and re-added the reference and using statement
  3. Recreated PrjForm from scratch
  4. PrjForm currently resides inside the PrjTest folder, I tried moving it to an outside folder
  5. Loaded the solution on a different computer with a fresh copy of VS 2010

I have done my homework and spent far too long looking for an answer online, no solution has helped yet.

What else could I try?

link|improve this question

1  
are you sure the PrjTest has a Namespace named PrjTest – Shekhar_Pro Jan 21 '11 at 23:41
3  
Wouldn't you know it: stackoverflow.com/questions/4286599/… Turns out this was a client profiling issue, I didn't even think to check for that.. – Anders Jan 21 '11 at 23:45
@Shekhar_Pro: I'm sure, it was one of the first things I checked.. – Anders Jan 21 '11 at 23:46
feedback

6 Answers

up vote 105 down vote accepted

See this question.

Turns out this was a client profiling issue.

PrjForm was set to ".Net Framework 4 Client Profile" I changed it to ".Net Framework 4", and now I have a successful build.

Thanks everyone! I guess it figures that after all that time spent searching online, I find the solution minutes after posting, I guess the trick is knowing the right question to ask..

link|improve this answer
Cheers, solved my issue. Damn client profile caused more than one bug. – Carra Mar 10 '11 at 16:41
Ditto.......... – BeemerGuy.net May 22 at 2:23
feedback

[PrjForm was set to ".Net Framework 4 Client Profile" I changed it to ".Net Framework 4", and now I have a successful build.]

This worked for me too. Thanks a lot. I was trying an RDF example for dotNet where in I downloaded kit from dotnetrdf.

NET4 Client Profile: Always target NET4 Client Profile for all your client desktop applications (including Windows Forms and WPF apps).

NET4 Full framework: Target NET4 Full only if the features or assemblies that your app need are not included in the Client Profile. This includes: If you are building Server apps. Such as:

  • ASP.Net apps
  • Server-side ASMX based web services

If you use legacy client scenarios. Such as: o Use System.Data.OracleClient.dll which is deprecated in NET4 and not included in the Client Profile.

  • Use legacy Windows Workflow Foundation 3.0 or 3.5 (WF3.0 , WF3.5)

If you targeting developer scenarios and need tool such as MSBuild or need access to design assemblies such as System.Design.dll

link|improve this answer
Thanks for the insights, that is good information to have! – Anders May 26 '11 at 14:33
feedback

The using statement refers to a namespace, not a project.

Make sure that you have the appropriately named namespace in your referenced project:

namespace PrjTest
{
     public class Foo
     {
          // etc...
     }
}

Read more about namespaces on MSDN:

link|improve this answer
Thanks Mark, I do have the namespace appropriately named. – Anders Jan 21 '11 at 23:53
Had the same issue, Thank You! – Jamey McElveen 2 days ago
feedback

If your project (PrjTest) does not expose any public types within the PrjTest namespace, it will cause that error.

Does the project (PrjTest) include any classes or types in the "PrjTest" namespace which are public?

link|improve this answer
Thanks for the insight, I'm learning a lot about this. PrjTest includes around 50 public classes; it's a decent-sized project – Anders Jan 23 '11 at 17:40
feedback

It is also possible, that the referenced projects targets .NET 4.0, while the Console App Project targets .NET 4.0 Client Library.

While it might not have been related to this particular case, I think someone else can find this information useful.

link|improve this answer
feedback

just changed Application's target framework to ".Net Framework 4".

And error got Disappeared.

good luck; :D

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.