Search code examples
uwpdesktop-bridge

Windows Application Packaging Project - how to create folders


I'm looking at migrating a .jsproj based Desktop Bridge installer to use .wapproj, one of the things my project does is deploy files in sub-directories of the install directory.

How do I replicate this in a .wapproj file?

Mike


Solution

  • Create the folder in the application's project (not the packaging project), add the files as content and set them to "Copy to output". Then when you create and deploy the package, the folder and the content will be part of resulting package, at the right relative location.

    enter image description here