(Dictionary<String, String> args, string key)
| 150 | } |
| 151 | |
| 152 | static string ValueOrNull(Dictionary<String, String> args, string key) |
| 153 | { |
| 154 | if (!args.ContainsKey(key)) |
| 155 | { |
| 156 | return null; |
| 157 | } |
| 158 | |
| 159 | return args[key]; |
| 160 | } |
| 161 | |
| 162 | static bool GenerateAndBuildNamespace(string ns, |
| 163 | VsVersions vsVersion, WinVersions winVersion, string winmd, |
nothing calls this directly
no outgoing calls
no test coverage detected