UNPKG

@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

23 lines (22 loc) 623 B
import { ProjectType } from '@nx/devkit'; /** * Typing for the shared project generator's options */ export interface NxDotnetProjectGeneratorSchema { name: string; tags?: string; directory?: string; template?: string; language: string; testTemplate: 'nunit' | 'mstest' | 'xunit' | 'none'; testProjectNameSuffix?: string; projectType?: ProjectType; solutionFile?: string | boolean; skipSwaggerLib: boolean; skipFormat?: boolean; pathScheme: 'nx' | 'dotnet'; useOpenApiGenerator?: boolean; namespaceName?: string; args?: string[]; __unparsed__?: string[]; }