0

我下載了示例LightSwitch應用程序(在線訂購),並且出現了一個我無法解決的錯誤。LightSwitch中的示例應用程序的問題

Error 1 The "SqlInstanceName" parameter is not supported by the "BuildSchema" task. Verify the parameter exists on the task, and it is a settable public instance property. C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\LightSwitch\v1.0\Microsoft.LightSwitch.targets 160 23 OnlineOrdering

Error 2 The "BuildSchema" task could not be initialized with its input parameters. C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\LightSwitch\v1.0\Microsoft.LightSwitch.targets 157 10 OnlineOrdering

錯誤是在下面的部分

<!--The Development Database is built in the same location - Bin\Data - for all configurations.--> 
    <BuildSchema Inputs="@(LightSwitchModel)" 
       ProjectPath="$(MSBuildProjectFullPath)" 
       OutputDirectory="Bin\Data" 
       SqlInstanceName="$(SqlInstanceName)" 
       ExternalDataSources="@(ServerExternalDataSources)"/> 

你的幫助深表感謝!

回答

0

我寫了這個示例。我知道它可以工作,因爲我已經將它安裝在多臺機器上。

但是,LightSwitch剛剛發佈,我還沒有在發佈的LightSwitch版本上進行測試。

您使用的是什麼版本?

+0

感謝您的回覆,結果發現我的Lighswitch擴展存在問題。現在問題已解決 但我正在嘗試一個示例應用程序,當我嘗試保存時出現此錯誤: 底層提供程序在打開時失敗。 內部異常消息: 由於無法啓動用戶實例的進程而無法生成SQL Server的用戶實例。連接將被關閉。 – Joe

相關問題