Files
dotnet-packaging/Packaging.Targets/CopyToDirectoryValue.cs
Frederik Carlier b95dad0e5d Allow fine-tuning of the folder structure on Linux
- Support setting the group and owner of files
- Support adding empty directories
- Support changing the target path of files
2017-06-23 22:46:24 +02:00

24 lines
523 B
C#

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