Background
I'm in a computing environment that utilizes Indirect Internet access (via a VM) for security.
I have the following machines:
- Desktop -- the machine I develop on; no internet access.
- Build Server -- hosts a local nuget feed. Also no internet access.
- Internet VM -- VM that has access to the internet. Files can be copied to my desktop.
Question
Is there any way I can do the following:
- On my internet VM, download a nuget package folder straight from the internet
- This is key and is the step I cannot seem to accomplish.
- Copy this folder to my build server's nuget directory
- Use the build server's feed from my dev machine to reference the package.
I can copy the folder right now, but only from my Dev environment, which would require me using nuget in my dev environment to download the package -- which I can't do, because the dev environment has no internet.
Thanks in advance for any advice!