(dir: string)
| 64 | } |
| 65 | |
| 66 | async 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 | |
| 73 | export async function buildProject(dir: string, language: Language): Promise<StepResult[]> { |
| 74 | switch (language) { |
no test coverage detected