@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
5 lines (4 loc) • 371 B
TypeScript
import { DotNetClient } from '@nx-dotnet/dotnet';
import { Tree } from '@nx/devkit';
export declare function runDotnetAddProjectToSolution(tree: Tree, dotnetClient: DotNetClient, projectRoot: string, solutionFile: string): void;
export declare function runDotnetAddProjectReference(tree: Tree, hostCsProj: string, targetCsProj: string, dotnetClient: DotNetClient): void;