I have the following (simplified slightly) at the top of my application page in SharePoint:
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register TagPrefix="wssuc" TagName="InputFormSection" src="~/_controltemplates/InputFormSection.ascx" %>
<%@ Register TagPrefix="wssuc" TagName="InputFormControl" src="~/_controltemplates/InputFormControl.ascx" %>
<%@ Register TagPrefix="wssuc" TagName="ButtonSection" src="~/_controltemplates/ButtonSection.ascx" %>
<%@ Register TagPrefix="wssuc" TagName="SchedulePicker" src="~/_controltemplates/SchedulePicker.ascx" %>
<asp:Content ID="Content1" ContentPlaceHolderID="PlaceHolderMain" runat="server" >
I am working in a folder that is not inside the 12 hive. I would like to get intellisense when typing. For example if I type:
<Sh... I get Intellinsense
I would like to be able to get intellisense on the user controls. so when I type
<wss... I will get intellisense
I know that Visual Studio can't find the location of the usercontrols and that is the reason. Ideally like to find something similar to importing the wss.xsd that will work with usercontrols. Any ideas, I am using WSS 3 and Visual Studio 2008. If I have to resort to making my own .xsd then fine.