I have VS 2012 project with structure like this:
Project
Folder1
file.xml
schema.xsd
code.cs
Folder2
code1.cs
code2.cs
I set Copy to output directory
property of file.xml
and schema.xsd
to Copy always
and want to output them to the same folder where assemblies outputed (bin\Debug
) but they always copied to folder bin\Debug\Folder1
. Is there a way to achieve my goal without moving files to the root of the project?