I have the following scenario:
- We want to create nuget packages on VSTS
- We want the packages to be available for an external party (preferably no login, tokens...?)
- For our developers we want to have the symbols for that package coming from VSTS
- The Debug packages should have the output + pdb files. (no source)
If I understand correctly, we can package using -Symbols
.
This creates 2 packages, 1 with Release build and 1 with Debug build + symbols and source. How am I supposed to distribute this to achieve the above requirements?
Note: the packages are considered private so we can't simply upload to nuget.org.