I seem to be getting some weird errors while rebuilding the project.
I have a project in witch I have stored all my DomainService. If I right click on the solution and select clean solution then rebuild the project I get a bunch of this errors:
Error 104
The type or namespace name 'Practices' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
D:\Projects\Backend\WebApi\DomainServices\LocalizationService.cs
I get errors for each file where I have imported this namespace:
using Microsoft.Practices.ServiceLocation;
Now I have already added a reference to the assembly.
The weirdest thing is that if I rebuild again everything works and no errors are displayed.
Does anyone have any ideea what's going on?