We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a specific case for an old project where a Class references a another class like so:
Class
public List<Common.Dtos.FilterSelections>? Filters { get; set; }
The output generated is missing the parent name spaces so only FilterSelections is show like so:
FilterSelections
export class GetAssetTrackHeroColumnChartWithFiltersDto { // WORKFLOWTOKEN public workflowToken: string | null = null; // GROUPTOKEN public groupToken: string | null = null; // DATESPANOPTION public dateSpanOption: number = 0; // DRILLDOWNCURRENTLEVEL public drillDownCurrentLevel: number = 0; // DRILLDOWNDATESTART public drillDownDateStart: string | null = null; // DATASETTYPE public dataSetType: number = 0; // FILTERS public filters: FilterSelections[] = null; }
Template generation code is as follows:
namespace Cylch.Atp.Dashboard.Services.Features.Reports.AssetTrack.Dtos { $Classes(c => c.Namespace == "Cylch.Atp.Dashboard.Services.Features.Reports.AssetTrack.Dtos")[ export class $Name { $Properties[ // $LoudName public $name: $Type = $Type[$Default];] }] }
Is there a way to specify to output the full namespace instead of just FilterSelections?
Manually adding Common.Dtos. to the .tsx class resolves the full path to the included class.
Common.Dtos.
.tsx
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a specific case for an old project where a
Class
references a another class like so:public List<Common.Dtos.FilterSelections>? Filters { get; set; }
The output generated is missing the parent name spaces so only
FilterSelections
is show like so:Template generation code is as follows:
Is there a way to specify to output the full namespace instead of just
FilterSelections
?Manually adding
Common.Dtos.
to the.tsx
class resolves the full path to the included class.The text was updated successfully, but these errors were encountered: