-
I installed .NET 7 and ran
Obviously, I did specify version, since I copied and pasted the command. Same thing re: the name of the tool. I assume there wouldn't be an issue with the package being a .Net tool, since it was designed as such. My internet connection is fine, although I don't know how to check if there's an issue wthi the NuGet feed. Running Windows 11 Home |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
Documentation needs to point out that you need to add |
Beta Was this translation helpful? Give feedback.
-
There's no mention of |
Beta Was this translation helpful? Give feedback.
-
Try running |
Beta Was this translation helpful? Give feedback.
-
The issue was caused, for some reason, by the Per the NuGet wiki, if you don't want to delete nuget.config, it would likely also work to manually add nuget.org as a source by running: |
Beta Was this translation helpful? Give feedback.
The issue was caused, for some reason, by the
nuget.config
file created by Visual Studio 2019. Following the suggestions from this NuGet wiki page, I simply deleted every file namednuget.config
on my computer (since I don't really use Visual Studio or NuGet for anything else, I was not worried about this breaking any previous configurations). After that, Wix installed correctly!Per the NuGet wiki, if you don't want to delete nuget.config, it would likely also work to manually add nuget.org as a source by running:
dotnet nuget add source https://api.nuget.org/v3/index.json --name nuget.org
OR
nuget.exe sources add -Name nuget.org -Source https://api.nuget.org/v3/index.json