Question

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.

Was it helpful?

Solution

Try

buildItem.SetMetadata("CopyToOutputDirectory", "Always");

OTHER TIPS

<Content Include="My.File">
  <CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top