1

I have created a nuget package (.nupkg) of files that I then want to unpack to a specific location during a release in VSTS. there doesnt appear to be a task to do this.

anyone got any ideas?

Darren
  • 93
  • 7

1 Answers1

2

Another way is that you can extract the package file through Extract Files task directly (Archive file patterns: **\*.nupkg)

starian chen-MSFT
  • 33,174
  • 2
  • 29
  • 53
  • Interesting. i knew that nupkg are really just zip's, but didn't realize the Extract Files task would recognize it as such. Removing my answer as this is more straightforward. – DenverDev Nov 27 '17 at 14:55