Hello,<br /><br />I've got the latest version of nuget.exe and I'm trying to take advantage of the multiple nuget.config files.<br /><br />For some reason, nuget keeps using the feeds listed in the nuget.config file that is in my %appdata% folder. It ignores any other nuget.config files, including the one in my .nuget folder.<br /><br />This is what the one in my .nuget folder looks like:<br /><br /><?xml version="1.0" encoding="utf-8"?><br /><configuration><br /> <solution><br /> <add key="disableSourceControlIntegration" value="true" /><br /> </solution><br /> <packageSources><br /> <add key="Official project team source" value="http://teamserver/api/v2/" /><br /> </packageSources><br /> <disabledPackageSources /><br /> <activePackageSource><br /> <add key="Official project team source" value="http://teamserver/api/v2/" /><br /> </activePackageSource><br /></configuration><br /><br />Is there something i'm doing wrong ?
Comments: a quick update to mention that in the nuget manager console if I browse to the different locations where I've got a nuget.config and I type 'nuget sources', then I see the correct active package sources feeds. However, when building the solution, these nuget.config files are still ignored...
Comments: a quick update to mention that in the nuget manager console if I browse to the different locations where I've got a nuget.config and I type 'nuget sources', then I see the correct active package sources feeds. However, when building the solution, these nuget.config files are still ignored...