I have a sharepoint-hosted application and some lists within this app. I want to replace default new form with my own page. I've modified schema.xml for the list:
<Forms>
<Form Type="DisplayForm" Url="DispForm.aspx" SetupPath="pages\form.aspx" WebPartZoneID="Main" />
<Form Type="EditForm" Url="EditForm.aspx" SetupPath="pages\form.aspx" WebPartZoneID="Main" />
<Form Type="NewForm" Url="NewForm.aspx" SetupPath="features\$SharePoint.Feature.DeploymentPath$\Pages\Default.aspx" WebPartZoneID="Main" />
</Forms>
But there is an error during deployment "Cannot find the file specified". How can I point to my page in sharepoint-hosted application list schema.xml?