Hi there,
I am new to DNN. I Create an empty solution. I add an empty asp.net web application project to the solution and then i replace all of web application with "Dnn Project" i downloaded from this site. I add reference to all dll of bin folder. The problem is here: When i build project I get following errors:
Error 7 Type 'DotNetNuke.Modules.Admin.Users.ViewProfile' already defines a member called 'OnLoad'
Error 6 Type 'DotNetNuke.Modules.Admin.Users.ViewProfile' already defines a member called 'OnInit'
Error 8 Type 'DotNetNuke.Modules.Admin.Authentication.Login' already defines a member called 'OnLoad'
Error 4 The type 'DotNetNuke.Modules.Admin.Authentication.Login' already contains a definition for 'UseCaptcha'
Error 3 The type 'DotNetNuke.Modules.Admin.Authentication.Login' already contains a definition for 'Logger'
Error 2 Partial declarations of 'DotNetNuke.Modules.Admin.Users.ViewProfile' must not specify different base classes
Error 5 Partial declarations of 'DotNetNuke.Modules.Admin.Authentication.Login' must not specify different base classes
For the first error listed above i saw there is 2 ViewProfile class in the project with one namespace 'DotNetNuke.Modules.Admin.Users.ViewProfile' in following address:
MyWebProject\admin\Users\ViewProfile.ascx.cs
and
MyWebProject\DesktopModules\Admin\ViewProfile\ViewProfile.ascx.cs
Thank you.