mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-14 13:45:53 +00:00
- Support setting the group and owner of files - Support adding empty directories - Support changing the target path of files
24 lines
523 B
C#
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
|
|
}
|
|
}
|