2017-02-16 90 views
0

我已經下載完整的源代碼版本的DotNetNuke(v.9.0)。DNN(DotNetNuke)網站項目拋出錯誤「Install.aspx could not be found」

當我嘗試通過加載所提供的項目,以建立使用Visual Studio(2015年),我的本地計算機上的DNN的網站 - 在網站DotNetNuke.Website.csproj folder--我收到以下錯誤:

Error CS2001 Source file 'C:\...\Website\Install\Install.aspx.cs' could not be found. 
Error CS2001 Source file 'C:\...\Website\Install\UpgradeWizard.aspx.cs' could not be found. 

迄今爲止我發現的唯一解決方案是將所有的網站文件夾作爲網站加載到新的解決方案中。但我寧願有一個適當的Web項目。

有什麼想法?提前謝謝了。

回答

0

花一些時間尋找解決的辦法後,我發現一個:

  1. 打開提供的Web項目DotNetNuke.Website.csproj在Visual Studio(我使用的是2015年)
  2. 右鍵單擊該項目,選擇「卸載」
  3. 現在再次右鍵單擊卸載的項目並單擊「編輯」。這將打開一個XML文件
  4. 搜索「Install.aspx」和「UpgradeWizard.aspx」,並刪除這些文件

    <Compile Include="Install\Install.aspx.cs"> 
    <DependentUpon>install.aspx</DependentUpon> 
    </Compile> 
    <Compile Include="Install\Install.aspx.designer.cs"> 
    <DependentUpon>install.aspx</DependentUpon> 
    </Compile> 
    <Compile Include="Install\UpgradeWizard.aspx.cs"> 
    <DependentUpon>UpgradeWizard.aspx</DependentUpon> 
    </Compile> 
    <Compile Include="Install\UpgradeWizard.aspx.designer.cs"> 
    <DependentUpon>UpgradeWizard.aspx</DependentUpon> 
    </Compile> 
    
  5. 此外,搜索<Install>true</Install>引用並將其設置爲

  6. 右鍵單擊項目並將其加載到解決方案中。

現在DNN網站應該運行沒有問題。

我希望這可以幫助別人。

相關問題