MCPcopy Create free account
hub / github.com/NodeRT/NodeRT / BuildModule

Method BuildModule

src/NodeRTLib/NodeRTProjectBuildUtils.cs:56–63  ·  view source on GitHub ↗
(string moduleDirectory, VsVersions vsVersion, bool verbose)

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected