今天clone新的專案時,編譯出現:
Unable to locate 'C:\...\Visual Studio 2013\Projects\YourProject\.nuget\nuget.exe'
少了nuget.exe是版控排除,但此檔案是必要的
因此必須讓新的開發人員clone專案能正常執行,更改NuGet.targets中的:
<DownloadNuGetExe Condition=" '$(DownloadNuGetExe)' == '' ">false</DownloadNuGetExe>
改為true,編譯時會自動去抓缺少的nuget.exe
<DownloadNuGetExe Condition=" '$(DownloadNuGetExe)' == '' ">true</DownloadNuGetExe>