| # Nuget.config creation | |
| Create a filed called `nuget.config` at this location with this content: | |
| ```xml | |
| <?xml version="1.0" encoding="utf-8"?> | |
| <configuration> | |
| <packageSources> | |
| <clear /> | |
| <add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> | |
| </packageSources> | |
| <disabledPackageSources> | |
| <clear /> | |
| </disabledPackageSources> | |
| </configuration> | |
| ``` | |