| 123456789101112131415161718192021222324 |
- using Quadarax.Foundation.Core.QConsole.Argument;
- namespace qdr.app.tools.qfu.Commands.Aspects
- {
- internal class ForceAspect
- {
- #region *** Constants ***
- public const string ARG_FORCE_NAME = "force";
- private const string ARG_FORCE_HINT = "force";
- private const string ARG_FORCE_DESCR = "Flag if set then ovewrite destination file therefore exists.";
- #endregion
- #region *** Public Operations ***
- public static IEnumerable<AbstractArgument> SetupArguments()
- {
- return
- [
- new FlagArgument( ARG_FORCE_NAME, ARG_FORCE_DESCR, ARG_FORCE_HINT,false)
- ];
- }
- #endregion
- }
- }
|