2ae8f5c3a0
Update build to use a custom Package directory (`dotnet restore` installs package assemblies to this location).
18 lines
876 B
XML
18 lines
876 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<config>
|
|
<!-- install packages to a custom path -->
|
|
<add key="repositoryPath" value="Packages"/>
|
|
</config>
|
|
<packageSources>
|
|
<clear />
|
|
<add key="CI Builds (dotnet-core)" value="https://www.myget.org/F/dotnet-core/api/v3/index.json" />
|
|
<add key="CI Builds (dotnet-cli)" value="http://myget.org/F/dotnet-cli/api/v3/index.json" />
|
|
<add key="CI Builds (NuGet)" value="https://www.myget.org/F/nugetbuild/api/v3/index.json" />
|
|
<add key="CI Builds (xUnit)" value="https://www.myget.org/F/coreclr-xunit/api/v3/index.json" />
|
|
<add key="CI Builds (aspnetcidev)" value="http://myget.org/F/aspnetcidev/api/v3/index.json" />
|
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
|
|
<add key="local" value="./src/windows-build/nuget-feed" />
|
|
</packageSources>
|
|
</configuration>
|