-
Synthesis fails to build patchers, and gives this error as a reason: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Caused by Empty Nuget ConfigUsually this is caused by an empty Nuget file. This file tells the computer where to go to download code packages that it needs. If it's empty, it will fail to download anything. It's unclear how this file ends up empty for some users, but regardless, there's a decently simple fix. Add Nuget.org Entry Back ManuallyYou can usually just make sure that this entry exists: Here is a typical
Add Nuget.org Entry Back With Visual StudioLots of dev tools have ways to modify this file for you. Here's how to do it with Visual Studio: Y8OTsY51ep.mp4Try AgainOnce the nuget file has the nuget.org entry, try reopening Synthesis and trying again |
Beta Was this translation helpful? Give feedback.
Caused by Empty Nuget Config
Usually this is caused by an empty Nuget file. This file tells the computer where to go to download code packages that it needs. If it's empty, it will fail to download anything.
%appdata%/nuget/NuGet.Config
It's unclear how this file ends up empty for some users, but regardless, there's a decently simple fix.
Add Nuget.org Entry Back Manually
You can usually just make sure that this entry exists:
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
Here is a typical
Nuget.Config
file, for reference: