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

12 lines (11 loc) 645 B
import { CreateDependencies, CreateDependenciesContext } from '@nx/devkit'; import { NxDotnetConfig } from '@nx-dotnet/utils'; type CreateDependenciesCompat<T> = { (ctx: CreateDependenciesContext, _: undefined): ReturnType<CreateDependencies<T>>; (opts: Parameters<CreateDependencies<T>>[0], ctx: CreateDependenciesContext): ReturnType<CreateDependencies<T>>; }; export declare const createDependencies: CreateDependenciesCompat<NxDotnetConfig>; export declare function resolveReferenceToProject(reference: string, source: string, rootMap: Record<string, string>, context: { workspaceRoot: string; }): string | undefined; export {};