-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNuGet.config
54 lines (41 loc) · 1.84 KB
/
NuGet.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<!-- user already has a configuration; this is only a complement when needed.-->
<configuration>
<config>
<add key="repositoryPath" value="(packages)" />
<!-- installed
-->
<!--<add key="dependencyVersion" value="HighestMinor" />-->
<add key="defaultPushSource" value="https://t.pkgs.visualstudio.com/_packaging/t/nuget/v3/index.json" />
<!--the installed for packageReference:
C:\Users\my\.nuget\packages
-->
</config>
<packageSources>
<!-- <add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="aspnetwebstacknightlyrelease" value="https://www.myget.org/f/aspnetwebstacknightlyrelease/" /> -->
<!--
Note that the source URL for nuget.org is https://api.nuget.org/v3/index.json.
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
-->
<!--<add key="my" value="https://t.pkgs.visualstudio.com/_packaging/t/nuget/v3/index.json" />-->
<!--<add key="local" value="C:\Users\t\Documents\_dev_\_nuget_\_pacs_\_src_" />-->
</packageSources>
<!-- Default Package Sources that are disabled by default. -->
<!-- Works like the 'disabledPackageSources' section of NuGet.Config files. -->
<!-- Sources cannot be modified or deleted either but can be enabled/disabled by users. -->
<disabledPackageSources>
<!--<add key="nuget.org" value="true" />-->
</disabledPackageSources>
<apikeys>
<!--<add key="https://t.pkgs.visualstudio.com/_packaging/t/nuget/v3/index.json" value="=" />-->
</apikeys>
<activePackageSource>
<add key="my" value="my" />
<!--<add key="All" value="(Aggregate source)" />-->
</activePackageSource>
<packageRestore>
<add key="enabled" value="True" />
<!--<add key="automatic" value="True" />-->
</packageRestore>
</configuration>