I've upgraded asp.net core project (project.json) originally created in VS2015 to VS2017 MSBuild project format (.csproj).
Build definitions looks like this:
Restore
, Build
and Test
build steps end up with follwong warning:
Project file(s) matching the specified pattern were not found.
Publish
build step ends with following error:
MyProject.csproj' does not contain a project.json file
Is it because the hosted build agent was not updated yet? What can I do about it? When will it be?
The latest update mentions that .NET Core tasks have been updated to support .csproj
project system as well as project.json
.
It's been more than 10 days since the announcement.However, there's a note at the top of the page
Note: The features discussed in this post will be rolling out over the next three weeks.
Your tenant might be updated in the near future.
As mentioned by Liero, you need to update your builds to use the Hosted VS2017
queue by editing the defintion and setting this appropriately on the Options tab.