Assets file project.assets.json not found. Run a NuGet package restore

后端 未结 30 967
孤城傲影
孤城傲影 2020-11-28 20:02

I\'m trying to use nopCommerce(Which is written in .NET Core) but when I want to run the project I face 52 Errors telling me Run a nuget package restore

30条回答
  •  天涯浪人
    2020-11-28 20:47

    little late to the answer but seems this will add value. Looking at the error - it seems to occur in CI/CD pipeline.

    Just running "dotnet build" will be sufficient enough.

    dotnet build

    dotnet build runs the "restore" by default.

提交回复
热议问题