-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathnuget.config.release-build
32 lines (29 loc) · 1.43 KB
/
nuget.config.release-build
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<!--
Avoid polluting the global .Nuget cache with preview packages
either from .NET core preview SDKs, or Microsoft.Identity.Web preview
builds
-->
<add key="globalPackagesFolder" value="bin\debug\packages" />
</config>
<!--
Used to specify the default Sources for list, install and update.
See: nuget.exe help list
See: nuget.exe help install
See: nuget.exe help update
-->
<packageSources>
<clear/>
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" />
<!-- Test with a specific version of the NuGet packages generated by the ASP.NET Core team -->
<add key="Packages from the release" value="%UserProfile%\Downloads\Packages\Packages" />
<!-- Test with a specific version of the NuGet packages generated by the ASP.NET Core team -->
<!--
<add key="Preview-dotnetcore-sdk" value="C:\dotnetcore\Windows_Packages\Windows_Packages\Release\Shipping" />
<add key="dotnet5" value="https://dnceng.pkgs.visualstudio.com/public/_packaging/dotnet5/nuget/v3/index.json" />
<add key="dotnet5-transport" value="https://dnceng.pkgs.visualstudio.com/public/_packaging/dotnet5-transport/nuget/v3/index.json" />
-->
</packageSources>
</configuration>