문제

Recently my build on AppHarbor was broked with following message:

     The build restored NuGet packages. Build the project again to include these packages   in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568.

I have next changes related to NuGet (in packages config):

from

      <package id="Microsoft.Bcl.Build" version="1.0.8" targetFramework="net45" />
      <package id="Microsoft.Net.Http" version="2.1.10" targetFramework="net45" />

to

     <package id="Microsoft.Bcl.Build" version="1.0.10" targetFramework="net45" />
     <package id="Microsoft.Net.Http" version="2.2.13" targetFramework="net45" />

+

     <package id="DotNetOpenAuth.Core" version="4.1.4.12333" targetFramework="net45" />

I have reinstalled to old versions Bcl and Net packages,but this doesnt help me.Has anybody the same problem?Thanks.

도움이 되었습니까?

해결책

This Microsoft blog post has additional details. Apparently, checking in your .targets file addresses the problem.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top