Reputation: 773
I want VS to create subfolders in release directory with some linked files from project. Something like this:
Project/
-bin/
--Relase/
---program.exe
---Resources/
----input.txt
---Config/
----default.conf
How can I do this while having files "input.txt" and "default.conf" in solution hierarchy?
Upvotes: 2
Views: 218
Reputation: 773
Heh, it's easy: just place needed items inside project in solution explorer and in properties window change property "Copy to output directory" to "Copy always" or "Copy if newer" .
Upvotes: 1