I have a private Nuget server, and I need to use some of my libraries in my Visual Studio Extension that I am writing. While debugging, the VSIX works fine. But once other developers try to install my extension, the installer can't find some of the nuget packages because it is only looking at nuget.org and not my private server. So my question is, how can I configure my VSIX to include my private server when pulling the nuget packages while installing itself on other developer's machines?
Thanks! :)