views:

51

answers:

1

I have created a VS Package Extension.I want to add a folder(contains sub folders) in the package that get packed and get installed with the package?

How do I do this?

A: 

Include the files in your project with the folder structure you want. Change the "Build Action" of each file to "Content" and set the "Include in VSIX" property to true.

Aaron Marten