stackoverfloweth
stackoverfloweth

Reputation: 6907

VS2017 Metadata file '.dll' could not be found

After upgrading to Visual Studio 2017, I am unable to build my project. Visual Studio 2015 still works when pointing at the exact same project.

this is the build errors I get Metadata file '******.dll' could not be found

I've already tried https://stackoverflow.com/a/17723774/3511012 with no success

Upvotes: 1

Views: 4280

Answers (1)

stackoverfloweth
stackoverfloweth

Reputation: 6907

I tracked the issue down to a specific NuGet package that has not yet been updated for visual studio 2017. (Baseclass.Contrib)

It isn't yet registered as having updates available through the nuget package manager, but you can manually update using the nuget console and running this command Install-Package Baseclass.Contrib.Nuget.Output -Version 2.3.0-vs20172

Upvotes: 2

Related Questions