Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 377 Bytes

File metadata and controls

16 lines (14 loc) · 377 Bytes

Nuget.config creation

Create a filed called nuget.config at this location with this content:

<?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>