Here's my steps:
1. I created a Visual Studio 2010 RC Web Application project (.NET 3.5), and added all the files.
2. I added project references to all the DLLs in the bin folder, but two would not add:
- CybsWSSecurity.dll
- lpssl.dll
- Type 'Admin_UserControls_SendMail' already defines a member called 'Page_Load' with the same parameter types. (\Admin\People\Users\SendMail.aspx.cs)
- The type or namespace name 'PersistentItemEventHandler' could not be found. (\Admin\People\Groups\AddGroupDialog.ascx.cs)
- The type or namespace name 'ISearchSidebarAware' could not be found. (\ConLib\SearchPage.ascx.cs)
- The type or namespace name 'ISearchSidebar' could not be found. (\ConLib\CategorySearchSidebar.ascx.cs)
- The type or namespace name 'CheckingOutEventHandler' could not be found. (\Admin\Orders\Create\PurchaseOrderPaymentForm.ascx.cs)
- The type or namespace name 'CheckedOutEventHandler' could not be found. (\Admin\Orders\Create\PurchaseOrderPaymentForm.ascx.cs)
- The type or namespace name 'PersistentItemEventArgs' could not be found. (\Admin\Store\Currencies\Default.aspx.cs)
Does anybody know what namespace those types should be in?
I nixed the first error by commenting out the empty Page_Load method in SendMail.aspx.cs, but I don't see why I should have needed to. Is there another file defining the same class, and having a function by the same name?