Skip to content

Commit

Permalink
Adds RecallOn* file attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
jessehouwing committed Nov 29, 2021
1 parent ac8458c commit 767b29b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion powershell/CompiledHelpers/VstsTaskSdk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,10 @@ public enum Attributes : uint
PosixSemantics = 0x01000000,
OpenReparsePoint = 0x00200000,
OpenNoRecall = 0x00100000,
FirstPipeInstance = 0x00080000
FirstPipeInstance = 0x00080000,
// Refer https://docs.microsoft.com/en-us/windows/win32/fileio/file-attribute-constants?redirectedfrom=MSDN&WT.mc_id=DOP-MVP-5001511
RecallOnDataAccess = 0x00400000,
RecallOnOpen = 0x00040000
}
[Flags]
public enum FindFlags
Expand Down

0 comments on commit 767b29b

Please sign in to comment.