(string moduleDirectory, VsVersions vsVersion, bool verbose)
| 54 | } |
| 55 | |
| 56 | private static void BuildModule(string moduleDirectory, VsVersions vsVersion, bool verbose) |
| 57 | { |
| 58 | string cmd = CreateBuildCmd(moduleDirectory, vsVersion); |
| 59 | bool result = ExecuteCommand(cmd, verbose); |
| 60 | |
| 61 | if (!result) |
| 62 | throw new Exception("Failed to build project"); |
| 63 | } |
| 64 | |
| 65 | private static bool ExecuteCommand(string cmd, bool verbose) |
| 66 | { |
nothing calls this directly
no outgoing calls
no test coverage detected