2014-04-03 65 views
11

得到下載生成錯誤單3.4.0的CentOS

源使& & make install的

mkdir -p -- /usr/lib/mono/xbuild/Microsoft/Portable/v4.0 
/usr/bin/install -c -c -m 644 targets/Microsoft.Portable.Common.targets /usr/lib/mono/xbuild/Microsoft/Portable/v4.0/Microsoft.Portable.Common.targets 
/usr/bin/install: cannot stat `targets/Microsoft.Portable.Common.targets': No such file or directory 

回答

27

單3.4歸檔缺少一個文件名爲Microsoft.Portable.Common.targets即應位於路徑mcs/tools/xbuild/targets/Microsoft.Portable.Common.targets,其內容如下:

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 
    <Import Project="..\Microsoft.Portable.Core.props" /> 
    <Import Project="..\Microsoft.Portable.Core.targets" /> 
</Project> 

看到這個錯誤: https://bugzilla.xamarin.com/show_bug.cgi?id=18690

4

只是一個小紙條(對我的自我很多),我犯了一個錯誤,作爲指定的路徑,我發現有點混淆。如果您安裝在/usr/local/src/mono-3.4/中,則需要將內容放入的文件路徑爲:

/usr/local/src/mono-3.4/mcs/tools/ xbuild /目標/ Microsoft.Portable.Common.targets

/usr/local/src/mono-3.4/mcs/tools/xbuild/targets/.content/Microsoft.Portable.Common.targets

/usr/local/src/mono-3.4/mcs/tools/xbuild/targets/.content

+0

感謝您節省我的時間瞭解我自己 – Basic