We've removed the telerik nuget package/feed completely from our solution.
our build server Is configured correctly, the issue is with the telerik nuget source, and probably related to the .net standard project, as it seems to pull information differently.
the issue was not just on the build server it affected other users as well, and me once they cleared their nuget cache, they were unable to build as well, even with putting their own credentials in the config file for the telerik feed.
As stated before, once the telerilk feed is gone, the solution builds correctly.
It fails because its checking the telerik source First because you can't order nuget feeds, and the telerik source is throwing the error, so it never gets to the main nuget feed.
If you could tell me what the issue is with the telerik source, and what that error message means it may be possible to fix.
our config(redacted)
<
configuration
>
<
packageSources
>
<
clear
/>
</
packageSources
>
<
packageSourceCredentials
>
<
telerik.com
>
<
add
key
=
"Username"
value
=
"username"
/>
<
add
key
=
"Password"
value
=
"password"
/>
</
telerik.com
>
</
packageSourceCredentials
>
<
config
>
<
add
key
=
"globalPackagesFolder"
value
=
".\packages"
/>
</
config
>
</
configuration
>