-
Notifications
You must be signed in to change notification settings - Fork 373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dotnet new -i 404 (Not Found). #1485
Comments
From the error & from the fact that passing the package source directly works, there seems to be a NuGet.config file somewhere above the |
@mlorbetske I did not find any NuGet.config above <?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="CliFallbackFolder" value="%userprofile%\.dotnet\NuGetFallbackFolder" />
<add key="SIEN" value="https://nuget.ne.ch/api/odata" />
</packageSources>
<packageRestore>
<add key="enabled" value="True" />
<add key="automatic" value="True" />
</packageRestore>
<bindingRedirects>
<add key="skip" value="False" />
</bindingRedirects>
</configuration>
In my opinion, that souldn't be an issue |
Unfortunately, the error you’re seeing is from NuGet and is related to not being able to reach that feed. Following up on the referenced issue would be the best course of action for pursuing this. |
From @aguacongas on March 23, 2018 9:44
Steps to reproduce
Expected behavior
The command should install the template with the default nuget source
Actual behavior
The command fail if we don't specify the nuget source.
We need to specify --nuget-source :
Environment data
dotnet --info
output:If I specified the nuget source it works
Copied from original issue: dotnet/cli#8883
The text was updated successfully, but these errors were encountered: