PowerShell/nuget.config

14 lines
518 B
Plaintext
Raw Normal View History

2015-11-13 05:42:35 +01:00
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<!-- install packages to a custom path -->
<add key="repositoryPath" value="Packages"/>
</config>
2015-11-13 05:42:35 +01:00
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="powershell-core" value="https://powershell.myget.org/F/powershell-core/api/v3/index.json" />
2015-11-13 05:42:35 +01:00
</packageSources>
</configuration>