Skip to content

Commit

Permalink
Output .NET build artifacts to dist/dotnet/ instead of just dist/. (#192
Browse files Browse the repository at this point in the history
)
  • Loading branch information
mpiroc committed Aug 22, 2018
1 parent 04d4990 commit f25c8c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/jsii-pacmak/lib/targets/dotnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ export default class Dotnet extends Target {
{ cwd: sourceDir }
);

await this.copyFiles(path.join(sourceDir, packageId, 'bin', 'Release'), outDir);
await this.copyFiles(
path.join(sourceDir, packageId, 'bin', 'Release'),
path.join(outDir, this.targetName));
await fs.remove(path.join(outDir, 'netstandard2.0'));
}

Expand Down

0 comments on commit f25c8c4

Please sign in to comment.