Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Errors in Azure DevOps build - are you missing an assembly reference?

I am using VSTS (Azure DevOps) for the first time and am setting up my first build (I have previously been using TFS). I'm trying to build a .NET application targeting .NET Framework 4.6.

However I'm getting build errors relating to missing namespaces and / or assemblies.

Error CS0246: The type or namespace name 'OwinStartupAttribute' could not be found (are you missing a using directive or an assembly reference?)

Error CS0234: The type or namespace name 'Http' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)

Error CS0234: The type or namespace name 'Azure' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)

The issues all seem to be related i.e. the nuget packages aren't getting restored during the build process.

I've therefore added a Nuget restore task to the pipeline before my build step.

enter image description here

And have checked the option Restore Nuget packages on the build step.

enter image description here

like image 455
DomBurf Avatar asked Sep 18 '18 09:09

DomBurf


3 Answers

I had some projects in a large solution with this problem; they had the old "packages.config" files. To fix, In Solution Explorer, right-click on a packages.config file and select Migrate packages.config to PackageReference.

Docs.

like image 161
John H Avatar answered Oct 26 '22 16:10

John H


I managed to get this working as I had some of the Nuget packages checked-in as part of source-control. I removed the entire packages folder from the solution and this has resolved the issue. There must have been some conflict between the packages I had in source-control and the packages I was trying to restore.

like image 28
DomBurf Avatar answered Oct 26 '22 15:10

DomBurf


In my case, this would happen because, for some reason, the local cache was only partially populated. Disabling the local cache in the build definition fixed the issue.

enter image description here

like image 2
fuglede Avatar answered Oct 26 '22 15:10

fuglede