MCPcopy
hub / github.com/aws-samples/aws-cdk-examples / buildCsharp

Function buildCsharp

scripts/build-toolkit/src/build.ts:66–71  ·  view source on GitHub ↗
(dir: string)

Source from the content-addressed store, hash-verified

64}
65
66async function buildCsharp(dir: string): Promise<StepResult[]> {
67 const steps: StepResult[] = [];
68 const build = await runStep('build', 'dotnet', ['build', 'src'], dir);
69 steps.push(build);
70 return steps; // C# build script doesn't run tests separately
71}
72
73export async function buildProject(dir: string, language: Language): Promise<StepResult[]> {
74 switch (language) {

Callers 1

buildProjectFunction · 0.85

Calls 1

runStepFunction · 0.90

Tested by

no test coverage detected