-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathNuGet.config
More file actions
18 lines (17 loc) · 862 Bytes
/
NuGet.config
File metadata and controls
18 lines (17 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<!-- The RoslynSonarQubePluginGenerator will look for a NuGet.config file in the same
directory as the exe. It will also look in the following user- and machine-wide locations:
* %AppData%\NuGet
* %ProgramData%\NuGet\Config
* %ProgramData%\NuGet\Config\SonarQube
A NuGet feed can be a local folder on disk. See http://docs.nuget.org/docs/creating-packages/hosting-your-own-nuget-feeds
If you have created an analyzer on your local machine you can generate a jar file for it by
specifying a package source that points at the directory containing the the .nupkg file
created by the standard Roslyn templates.
-->
<configuration>
<packageSources>
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="localFeed" value="C:\LocalNuGetFeed" />
</packageSources>
</configuration>