Azure Data Studio NU1101 Unable to Find Package

Azure Data Studio NU1101 Unable to Find Package

  • data
  • 2021-06-03
  • 1 minute to read

This post is over 24 months old, that is an lifetime in tech! Please be mindful of that when reading this post as it could be outdated. I try to keep on top of changes where possible. I try to keep things up to date, but if you think something needs updating, please let me know in the comments.

Build errors

Currently exploring building database projects using Azure Data Studio. I can’t quite work out why this started occurring because I have been building projects for a few days but all of a sudden I was presented with this error;

error NU1101: Unable to find package Microsoft.NETFramework.ReferenceAssemblies. No packages exist with this id in source(s): Microsoft Visual Studio Offline Packages

Adjusting NuGet.Config

Not much in the way of useful content on this, but for some reason my NuGet.Config file was borked. You want to edit the NuGet.Config file found at %appdata%\NuGet\NuGet.Config and replace the contents with the following;

<configuration>
  <packageSources>
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
  </packageSources>
</configuration>

Builds are now working again!

#mtfbwy



Recent Posts

T-SQL Tuesday #174 My favourite job interview question

T-SQL Tuesday #174 My favourite job interview question

  • 2024-05-14
  • 4 minutes to read

This is my 12th contribution to TSQL Tuesday, the data community blog party. Have a read, and why not join in next time!

Read More
Connecting Azure Data Studio to Postgres

Connecting Azure Data Studio to Postgres

  • 2024-05-09
  • 2 minutes to read

How to connect Azure Data Studio to a Postgres database.

Read More