namespace Packaging.Targets { /// /// Determines whether a file is copied to its output directory or not. /// internal enum CopyToDirectoryValue { /// /// The file is never copied. /// DoNotCopy, /// /// The file is alwasy copied. /// Always, /// /// The file is copied only if it is newer. /// PreserveNewest } }