Context:
I have 3 projects in my solutions (C#, .NET 4.0):
- Abc.Business (Dll project)
- Abc.Test (Test project)
Abc.Ui (Wpf project)
Abc.Business is my business logic. It contains Entities, Managers, Services, Etc.
- Abc.Test have a project reference on Abc.Business and are the unit test. They work well.
- Abc.Ui have a project reference on Abc.Business
Abc.Ui is unable to resolve all of the using Abc.Business;
The error log shows :
Error The type or namespace name 'Business' does not exist in the namespace 'Abc' (are you missing an assembly reference?) c:\Abc\Abc.Ui\ViewModels\ClientViewModel.cs
Also, when I manually type the using
in top of my file, The Intelli-sense show me the "Abc.Business.etc..". So the Intelli-sense walk in the reference but is does not build.
Any ideas ?