Install a Package "NuGet" of a project X (the DLLs) in My Current Project, I have corrected the errors, ambiguities and necessary definitions, but in the end when executing I get 2 errors, which say: error CS0246: Name of type or namespace 'xxxxxxxx' not found (missing a using directive or an assembly reference?) . However, I check the references and if there are the ones you have put in Nuget.
This error comes to me when I use them in the following way in the code: xxxxxxxx.ModuleBase baseModule = new xxxxxxxx.ModuleBase (); Where xxxxxxxx is the reference installed by the NuGet. If I use it as a use it works for me, but I can not use it because it would have a lot of conflicts with my current project. Another thing, when compiling or debugging, the error only appears in the output window, in the Error List window no it comes out.
Does anyone know what could be done?