You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<config>
|
|
<!--
|
|
Used to specify the default location to expand packages.
|
|
See: nuget.exe help install
|
|
See: nuget.exe help update
|
|
|
|
In this example, %PACKAGEHOME% is an environment variable.
|
|
This syntax works on Windows/Mac/Linux
|
|
-->
|
|
<add key="repositoryPath" value="%PACKAGEHOME%/External" />
|
|
</config>
|
|
|
|
<packageRestore>
|
|
<!-- Allow NuGet to download missing packages -->
|
|
<add key="enabled" value="True" />
|
|
|
|
<!-- Automatically check for missing packages during build in Visual Studio -->
|
|
<add key="automatic" value="True" />
|
|
</packageRestore>
|
|
|
|
<!--
|
|
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>
|
|
<add key="Tom PIT Git - Connected" value="https://git.tompit.com/api/packages/Connected/nuget/index.json" />
|
|
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" />
|
|
</packageSources>
|
|
</configuration> |