NuGet.Config 1.8 KB
Newer Older
P
Pilchie 已提交
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- Copyright (c)  Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information. -->
P
Pilchie 已提交
3 4

<configuration>
5 6 7 8 9 10 11
  <packageRestore>
    <!-- Currently, the repository's version of NuGet.exe and Visual Studio's version
         fight over the format of project.lock.json because the one in the respository
         is newer. To prevent that, turn off package restore. -->
    
    <add key="automatic" value="false" />
  </packageRestore>
P
Pilchie 已提交
12 13 14
  <solution>
    <add key="disableSourceControlIntegration" value="true" />
  </solution>
15
  <config>
16
    <add key="repositoryPath" value="../packages" />
17
  </config>
18
  <packageSources>
19
    <clear />
20

21 22 23 24 25 26
    <add key="myget.org dotnet-coreclr" value="https://dotnet.myget.org/F/dotnet-coreclr/api/v3/index.json" />
    <add key="myget.org dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
    <add key="myget.org dotnet-corefxtestdata" value="https://dotnet.myget.org/F/dotnet-corefxtestdata/api/v3/index.json" />
    <add key="myget.org dotnet-buildtools" value="https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json" />
    <add key="myget.org symreader" value="https://dotnet.myget.org/F/symreader/api/v3/index.json" />
    <add key="myget.org symreader-portable" value="https://dotnet.myget.org/F/symreader-portable/api/v3/index.json" />
J
Jared Parsons 已提交
27
    <add key="myget.org roslyn-master-nightly" value="https://dotnet.myget.org/F/roslyn-master-nightly/api/v3/index.json" />
28
    <add key="myget.org devcore" value="https://www.myget.org/F/vs-devcore/api/v3/index.json" />
29
    <add key="myget.org roslyn-tools" value = "https://dotnet.myget.org/F/roslyn-tools/api/v3/index.json" />
30
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
31 32
  </packageSources>

33
</configuration>