spspli
spspli

Reputation: 3338

How to include folders and files in AppX for UWP application?

I have an UWP application which contains multiple UWP projects and some win32 projects(win form, wpf etc.). After deployment, I want to see my win32 binaries copied to AppX folder, how could I do that? Do I use post build or something else?

Upvotes: 3

Views: 2682

Answers (1)

Florian Moser
Florian Moser

Reputation: 2663

You are probably looking for Build Action: Content:

build action: content

select an entry in visual studio to see the menu below. Normally you would do this with images or other resources.

To set the build action for the whole folder(s) you can refer to In Visual Studio, how can I set the Build Action for an entire folder?

Upvotes: 2

Related Questions