Skip to content

Commit f25c8c4

Browse files
authored
Output .NET build artifacts to dist/dotnet/ instead of just dist/. (#192)
1 parent 04d4990 commit f25c8c4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/jsii-pacmak/lib/targets/dotnet.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ export default class Dotnet extends Target {
2828
{ cwd: sourceDir }
2929
);
3030

31-
await this.copyFiles(path.join(sourceDir, packageId, 'bin', 'Release'), outDir);
31+
await this.copyFiles(
32+
path.join(sourceDir, packageId, 'bin', 'Release'),
33+
path.join(outDir, this.targetName));
3234
await fs.remove(path.join(outDir, 'netstandard2.0'));
3335
}
3436

0 commit comments

Comments
 (0)