Hi Omar,

On Sun, Jan 9, 2022 at 10:56 AM Andrea Musuruane <musuruan@gmail.com> wrote:
> Otherwise I'll get the following error:
>
> /usr/lib64/dotnet/sdk/6.0.100/NuGet.targets(130,5): error : Unable to load the service index for source
> https://api.nuget.org/v3/index.json. [/builddir/build/BUILD/pinta-2.0/Pinta.sln]

If the issue is just that it can not ping api.nuget.org (because that's
the NuGet server location listed in a nuget.config file somewhere), what
happens if you remove all references to that? Or maybe remove that
and other network locations using a `<clear />`?

I'm not sure I follow you here.

I cannot find any nuget.config file or any file that has an occurrence of nuget in it :-/

After more digging, it seems that various csproj files have:

  <ItemGroup>
    <PackageReference Include="GtkSharp" Version="3.24.24.34" />
  </ItemGroup>

I think this is what triggers NuGet.

The good news is that GtkSharp is the only requirements. The bad news is that GtkSharp requires other libraries:
https://www.nuget.org/packages/GtkSharp/

If a GtkSharp would be provided by an RPM package, would NuGet still be called?

BR,

Andrea