@nx-dotnet/core
Version:
- Have an existing nx workspace. For creating this, see [nrwl's documentation](https://nx.dev/latest/angular/getting-started/nx-setup). - .NET SDK is installed, and `dotnet` is available on the path. For help on this, see [Microsoft's documentation](https
10 lines (9 loc) • 630 B
TypeScript
import { Tree } from '@nx/devkit';
import { DotNetClient } from '@nx-dotnet/dotnet';
import { NxDotnetGeneratorSchema } from './schema';
export declare function normalizeOptions(schema: NxDotnetGeneratorSchema): NxDotnetGeneratorSchema & Required<Pick<NxDotnetGeneratorSchema, 'suffix'>>;
export default function (host: Tree, rawSchema: NxDotnetGeneratorSchema, dotnetClient?: DotNetClient): Promise<void>;
export declare function calculateTestTargetNameAndRoot(pathScheme: 'nx' | 'dotnet', targetProjectName: string, targetProjectRoot: string, testProjectName?: string, suffix?: string): {
root: string;
name: string;
};