ForceAspect.cs 732 B

123456789101112131415161718192021222324
  1. using Quadarax.Foundation.Core.QConsole.Argument;
  2. namespace qdr.app.tools.qfu.Commands.Aspects
  3. {
  4. internal class ForceAspect
  5. {
  6. #region *** Constants ***
  7. public const string ARG_FORCE_NAME = "force";
  8. private const string ARG_FORCE_HINT = "force";
  9. private const string ARG_FORCE_DESCR = "Flag if set then ovewrite destination file therefore exists.";
  10. #endregion
  11. #region *** Public Operations ***
  12. public static IEnumerable<AbstractArgument> SetupArguments()
  13. {
  14. return
  15. [
  16. new FlagArgument( ARG_FORCE_NAME, ARG_FORCE_DESCR, ARG_FORCE_HINT,false)
  17. ];
  18. }
  19. #endregion
  20. }
  21. }