(Dictionary<String, String> args)
| 210 | } |
| 211 | |
| 212 | static bool ValidateArguments(Dictionary<String, String> args) |
| 213 | { |
| 214 | if (!args.ContainsKey("winmd") || String.IsNullOrEmpty(args["winmd"])) |
| 215 | return false; |
| 216 | |
| 217 | if (args.ContainsKey("namespaces")) |
| 218 | return true; |
| 219 | |
| 220 | if (!args.ContainsKey("outdir") || String.IsNullOrEmpty(args["outdir"])) |
| 221 | return false; |
| 222 | |
| 223 | return true; |
| 224 | } |
| 225 | |
| 226 | static void PrintHelp() |
| 227 | { |
nothing calls this directly
no outgoing calls
no test coverage detected