/Rhino.Etl.Cmd/RhinoEtlCommandLineOptions.cs
http://github.com/ayende/rhino-etl · C# · 18 lines · 17 code · 1 blank · 0 comment · 0 complexity · d7068c55fa2e632e1fb949c3e6fe192f MD5 · raw file
- namespace Rhino.Etl.Cmd
- {
- using System;
- using Boo.Lang.Useful.CommandLine;
- [Serializable]
- public class RhinoEtlCommandLineOptions : AbstractCommandLine
- {
- [Option("File name", ShortForm = "f", MinOccurs = 1, MaxOccurs = 1)]
- public string File;
- [Option("Configurationname", ShortForm = "c", MinOccurs = 0, MaxOccurs = 1)]
- public string Configuration;
- [Option("Process name", ShortForm = "p", MinOccurs = 0, MaxOccurs = 1)]
- public string Process;
- [Option("Verbose logging", ShortForm = "v", MaxOccurs = 1)]
- public bool Verbose = false;
- }
- }