我有一個sharepoint託管的應用程序和這個應用程序中的一些列表。我想用我自己的頁面替換默認的新窗體。我修改了以下列表的schema.xml:Sharepoint應用程序2013年自定義列表新頁面
<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>
但是在部署過程中出現錯誤「無法找到指定的文件」。我如何指向我在Sharepoint託管的應用程序列表schema.xml中的頁面?