Home   » »   Knowledge Base   » »   UI Customization   » »   ALUI v6.5 UICI with VS 2005 How-To (Part 2)

ALUI v6.5 UICI with VS 2005 How-To (Part 2)

Setting Up The Project Solution

Open VS 2005 and create a new blank solution.

New Solution

 

Next, right-click on the solution file in the "Solution Explorer", choose Add >> New Project. Choose a C# >> Windows >> Class Library, name the project "nullnavigation" and hit "OK".

.Add New Project

Delete the automatically created Class1.cs and AssemblyInfo.cs (under Properties).  The AssemblyInfo.cs will be added in later since it is included with the UICI source.  Repeat this step creating projects for "portalnavigation", "portalpages" and "portaluiinfrastructure".  Do not create a project for "portal" yet.  We will do that in the next step.  Be certain to spell these projects exactly or you may spend 6-7 hours trying to determine why the libraries won't deploy properly (just trust me on this one).

 

Open IIS Manager and create a new virtual directory named "Portal_Trunk" (or whatever your base solution is named) that points to the %SOURCE_HOME%\(Solution Name) folder.

New Virtual Directory

 

Go back to Visual Studio, right click on the Solution Explorer again and add a new project, but this time we are going to choose to add an "ASP.NET Web Application".  Name this project "portal".

New ASP.NET Web Application

 Once added, remove the default.aspx, web.config & AssemblyInfo.cs files from the project.

Continue to Part 3 »
« Back to Introduction