@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
31 lines (30 loc) • 902 B
JSON
{
"$schema": "http://json-schema.org/schema",
"id": "@nx-dotnet/core:project-reference",
"title": "Project Reference Generator",
"description": "Adds a project reference to the host project that points to the source project.",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "The project to which the reference is added.",
"$default": {
"$source": "argv",
"index": 0
},
"x-prompt": "Which project should the reference be attached to?",
"x-dropdown": "projects"
},
"reference": {
"type": "string",
"description": "The project to which the reference points.",
"$default": {
"$source": "argv",
"index": 1
},
"x-prompt": "Which project should the reference point to?",
"x-dropdown": "projects"
}
},
"required": ["project", "reference"]
}