0

Possible Duplicate:
Preventing referenced assembly PDB and XML files copied to output

for example, I have a c# project which reference a.dll, and a when a c# a.dll has an accompany xml file a.xml for intellisense, when build the project, the a.dll and a.xml are both copied to output folder, how can i disable copying of a.xml to output folder?

dmtweigt
  • 83
  • 4
Benny
  • 8,547
  • 9
  • 60
  • 93

1 Answers1

-3

If you go to properties of this file in visual studio, you will notice property "Copy to output", which you need to set to "false" in order to prevent its' coping.

Eadel
  • 3,797
  • 6
  • 38
  • 43