We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d4990 commit f25c8c4Copy full SHA for f25c8c4
1 file changed
packages/jsii-pacmak/lib/targets/dotnet.ts
@@ -28,7 +28,9 @@ export default class Dotnet extends Target {
28
{ cwd: sourceDir }
29
);
30
31
- await this.copyFiles(path.join(sourceDir, packageId, 'bin', 'Release'), outDir);
+ await this.copyFiles(
32
+ path.join(sourceDir, packageId, 'bin', 'Release'),
33
+ path.join(outDir, this.targetName));
34
await fs.remove(path.join(outDir, 'netstandard2.0'));
35
}
36
0 commit comments