9 implementations of LocaleConfigPlace
Microsoft.TemplateEngine.Cli (1)
CliTemplateInfo.cs (1)
66public string? LocaleConfigPlace => _templateInfo.LocaleConfigPlace;
Microsoft.TemplateEngine.Edge (3)
FilterableTemplateInfo.cs (1)
63public string LocaleConfigPlace { get; private set; }
Settings\TemplateInfo.cs (1)
217public string? LocaleConfigPlace { get; private set; }
Template\TemplateCreator.cs (1)
550public string? LocaleConfigPlace { get; init; }
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (2)
RunnableProjectConfig.ITemplate.cs (1)
26string? IExtendedTemplateLocator.LocaleConfigPlace => Localization?.File.FullPath;
RunnableProjectGenerator.cs (1)
466public string LocaleConfigPlace => throw new NotImplementedException();
Microsoft.TemplateEngine.Utils (1)
IScanTemplateInfoExtensions.cs (1)
71public string? LocaleConfigPlace { get; }
Microsoft.TemplateSearch.Common (2)
Abstractions\TemplateSearchData.cs (1)
95string? IExtendedTemplateLocator.LocaleConfigPlace => TemplateInfo.LocaleConfigPlace;
TemplateDiscoveryMetadata\BlobStorageTemplateInfo.cs (1)
128string IExtendedTemplateLocator.LocaleConfigPlace => string.Empty;
6 references to LocaleConfigPlace
Microsoft.TemplateEngine.Cli (1)
CliTemplateInfo.cs (1)
66public string? LocaleConfigPlace => _templateInfo.LocaleConfigPlace;
Microsoft.TemplateEngine.Edge (2)
FilterableTemplateInfo.cs (1)
101LocaleConfigPlace = source.LocaleConfigPlace,
Template\TemplateCreator.cs (1)
267LocaleConfigPlace = templateInfo.LocaleConfigPlace,
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (2)
RunnableProjectGenerator.cs (2)
59localeConfig = string.IsNullOrWhiteSpace(extendedTemplateLocator.LocaleConfigPlace) ? null : mountPoint.FileInfo(extendedTemplateLocator.LocaleConfigPlace!);
Microsoft.TemplateSearch.Common (1)
Abstractions\TemplateSearchData.cs (1)
95string? IExtendedTemplateLocator.LocaleConfigPlace => TemplateInfo.LocaleConfigPlace;