Set Copy to Output folder by code

936 Views Asked by At

I am developing a code generation tool, so the project files(.csprj) are created by code. Is there any way to mark a content file to be copied always to the output directory? ...

var project = new BuildEngine.Project();
project.Load(ProjectFile.FullName, ProjectLoadSettings.IgnoreMissingImports);
var buildItem = project.AddNewItem("Content", fileName);   

... I need something like this buildItem.CopyToOutput=true...

project.Save(ProjectFile.FullName);

Every ideas are welcome. Thank you.

2

There are 2 best solutions below

2
On BEST ANSWER

Try

buildItem.SetMetadata("CopyToOutputDirectory", "Always");
0
On
<Content Include="My.File">
  <CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>