Today I received a C# solution. It includes multiple projects and multiple files. (Several screens- forms I guess)
I don't even want to build or run at this point. I just want to see the screens.
When clicking on a cs file (that i believe -but I am not sure- it is generated by the designer), I got:
When I go to the file PaMenuBaseForm.cs (inside a Base folder) I got another designer error that says
When I go to the autogenerated code I got
As you can expect this gets a CS0234 error: the type or namespace name 'baseLibrary' does not exists in the namespace base1(are you missing an assembly reference?)
so, how can I solve this? I can see that the namespace base1.baseLibrary does not exist anywhere in the code. Perhaps is there a dll missing? If so where to put it?
(In the Solution explorer, References I can see that base1.baseLibrary is missing (with a yellow triangle and a !) among some other references. )
Any help will be greatly appreciated
I don't even want to build or run at this point. I just want to see the screens.
When clicking on a cs file (that i believe -but I am not sure- it is generated by the designer), I got:
The designer could not be shown for this file because none of the classes within it can be designed. The designer inspected the following classes in the file: Ptheclass --- The base class 'base1.subbase1.subsubbase1.Base.PaMenuBaseForm' could not be loaded. Ensure the assembly has been referenced and that all projects have been built
When I go to the file PaMenuBaseForm.cs (inside a Base folder) I got another designer error that says
The designer cannot process the code at line 33: this.paFooterPanel = new base1.baseLibrary.Gui.PaPanel(); The code within the method 'InitializeComponent' is generated by the designer and should not be manually modified. Please remove any changes and try opening the designer again.
When I go to the autogenerated code I got
C#:
using base1.baseLibrary.Gui;
namespace base1.subbase1.subsubbase1.Base
{
private void InitializeComponent()
{
this.paFooterPanel = new base1.baseLibrary.Gui.PaPanel();
}
}
As you can expect this gets a CS0234 error: the type or namespace name 'baseLibrary' does not exists in the namespace base1(are you missing an assembly reference?)
so, how can I solve this? I can see that the namespace base1.baseLibrary does not exist anywhere in the code. Perhaps is there a dll missing? If so where to put it?
(In the Solution explorer, References I can see that base1.baseLibrary is missing (with a yellow triangle and a !) among some other references. )
Any help will be greatly appreciated