Reputation: 3338
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
Reputation: 2663
You are probably looking for 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