Skip to content

Instantly share code, notes, and snippets.

@hishaamn
Created July 14, 2024 08:59
Show Gist options
  • Save hishaamn/2133764ede2b3a596e490ff7206bb16d to your computer and use it in GitHub Desktop.
Save hishaamn/2133764ede2b3a596e490ff7206bb16d to your computer and use it in GitHub Desktop.
Extend the current Processing Context
public class ExtSimpleProcessingContext : SimpleProcessingContext
{
public ExtSimpleProcessingContext(bool skip)
{
this.SkipFile = skip;
}
public bool SkipFile { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment