We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8be153 commit 2ea2570Copy full SHA for 2ea2570
packages/core/src/executors/update-swagger/executor.ts
@@ -8,7 +8,7 @@ import {
8
9
import { existsSync } from 'fs';
10
import { ensureDirSync } from 'fs-extra';
11
-import { dirname, join } from 'path';
+import { dirname, join, resolve } from 'path';
12
13
import { DotNetClient, dotnetFactory } from '@nx-dotnet/dotnet';
14
import {
@@ -99,7 +99,7 @@ export default async function runExecutor(
99
'tofile',
100
'--output',
101
options.output,
102
- options.startupAssembly,
+ resolve(options.startupAssembly),
103
options.swaggerDoc,
104
]);
105
0 commit comments