20 implementations of Id
dotnet (7)
Commands\New\BuiltInTemplatePackageProviderFactory.cs (1)
21public Guid Id { get => FactoryId; }
Commands\New\MSBuildEvaluation\MSBuildEvaluator.cs (1)
36public Guid Id => Guid.Parse("{6C2CB5CA-06C3-460A-8ADB-5F21E113AB24}");
Commands\New\MSBuildEvaluation\ProjectCapabilityConstraint.cs (1)
19public Guid Id => Guid.Parse("{85F3EFFB-315F-4F2F-AA0A-99EABE3B6FB3}");
Commands\New\MSBuildEvaluation\ProjectContextSymbolSource.cs (1)
22public Guid Id => Guid.Parse("{9A839474-CE00-4430-A352-98967542B56B}");
Commands\New\OptionalWorkloadProviderFactory.cs (1)
19public Guid Id => FactoryId;
Commands\New\SdkInfoProvider.cs (1)
21public Guid Id { get; } = Guid.Parse("{A846C4E2-1E85-4BF5-954D-17655D916928}");
Commands\New\WorkloadsInfoProvider.cs (1)
14public Guid Id { get; } = Guid.Parse("{F8BA5B13-7BD6-47C8-838C-66626526817B}");
Microsoft.TemplateEngine.Cli (1)
PostActionProcessors\PostActionProcessorBase.cs (1)
13public abstract Guid Id { get; }
Microsoft.TemplateEngine.Edge (11)
BuiltInManagedProvider\GlobalSettingsTemplatePackageProviderFactory.cs (1)
13Guid IIdentifiedComponent.Id => FactoryId;
Components\EnvironmentVariablesBindSource.cs (1)
21Guid IIdentifiedComponent.Id => Guid.Parse("{8420EB0D-2FD7-49A7-966D-0914C86A14E4}");
Components\HostParametersBindSource.cs (1)
21Guid IIdentifiedComponent.Id => Guid.Parse("{63AB8956-DBFA-4DA4-8089-93CC8272D7C5}");
Constraints\HostConstraint.cs (1)
13Guid IIdentifiedComponent.Id { get; } = Guid.Parse("{93721B30-6890-403F-BAE7-5925990865A2}");
Constraints\OSConstraint.cs (1)
19Guid IIdentifiedComponent.Id { get; } = Guid.Parse("{73DE9788-264A-427B-A26F-2CA3911EE424}");
Constraints\SdkVersionConstraintFactory.cs (1)
13Guid IIdentifiedComponent.Id { get; } = Guid.Parse("{4E9721EF-0C02-4C09-A5A4-56C3D29BFC8E}");
Constraints\WorkloadConstraintFactory.cs (1)
16Guid IIdentifiedComponent.Id { get; } = Guid.Parse("{F8BA5B13-7BD6-47C8-838C-66626526817B}");
Installers\Folder\FolderInstallerFactory.cs (1)
13Guid IIdentifiedComponent.Id => FactoryId;
Installers\NuGet\NuGetInstallerFactory.cs (1)
13Guid IIdentifiedComponent.Id => FactoryId;
Mount\Archive\ZipFileMountPointFactory.cs (1)
15Guid IIdentifiedComponent.Id => FactoryId;
Mount\FileSystem\FileSystemMountPointFactory.cs (1)
13Guid IIdentifiedComponent.Id => FactoryId;
Microsoft.TemplateSearch.Common (1)
Providers\NuGetMetadataSearchProviderFactory.cs (1)
13Guid IIdentifiedComponent.Id => new Guid("6EA368C4-8A56-444C-91D1-55150B296BF2");
21 references to Id
Microsoft.TemplateEngine.Abstractions (1)
IComponentManager.cs (1)
20/// <param name="id"><see cref="Guid"/> that is defined in <see cref="IIdentifiedComponent.Id"/>.</param>
Microsoft.TemplateEngine.Cli (2)
Commands\BaseCommand.cs (2)
215.DefineColumn(mp => mp.Id.ToString(), LocalizableStrings.MountPointFactories, showAlways: true) 226.DefineColumn(g => g.Id.ToString(), LocalizableStrings.Generators, showAlways: true)
Microsoft.TemplateEngine.Edge (18)
BuiltInManagedProvider\GlobalSettingsTemplatePackageProvider.cs (1)
40_installersByGuid[installerFactory.Id] = installer;
Constraints\SdkVersionConstraintFactory.cs (1)
104string.Format(LocalizableStrings.SdkConstraint_Error_MismatchedProviders, providers.Select(p => p.Id).ToCsvString()));
Constraints\WorkloadConstraintFactory.cs (1)
98string.Format(LocalizableStrings.WorkloadConstraint_Error_MismatchedProviders, providers.Select(p => p.Id).ToCsvString()));
Installers\Folder\FolderInstaller.cs (3)
32if (data.InstallerId != Factory.Id) 34throw new ArgumentException($"{nameof(FolderInstaller)} can only deserialize packages with {nameof(data.InstallerId)} {Factory.Id}", nameof(data)); 83return new TemplatePackageData(Factory.Id, folderTemplatePackage.MountPointUri, folderTemplatePackage.LastChangeTime, null);
Installers\NuGet\NuGetInstaller.cs (3)
100if (data.InstallerId != Factory.Id) 102throw new ArgumentException($"{nameof(NuGetInstaller)} can only deserialize packages with {nameof(data.InstallerId)} {Factory.Id}", nameof(data)); 328Factory.Id,
Settings\ComponentManager.cs (6)
217_componentIdToAssemblyQualifiedTypeName[instance.Id] = type.AssemblyQualifiedName; 218_settings.ComponentGuidToAssemblyQualifiedName[instance.Id.ToString()] = type.AssemblyQualifiedName; 224idsForInterfaceType.Add(instance.Id); 236idsForInterfaceTypeForSettings.Add(instance.Id); 285typeCache[component.Id] = component; 292ids.Add(component.Id);
Settings\Scanner.cs (1)
243_logger.LogDebug("Scanning mount point '{0}' by generator '{1}': found {2} templates", source.MountPoint.MountPointUri, generator.Id, templateList.Count);
Settings\TemplatePackageManager.cs (2)
59/// <param name="id"><see cref="Guid"/> from <see cref="IIdentifiedComponent.Id"/> of <see cref="ITemplatePackageProviderFactory"/>.</param> 65return _cachedSources!.Keys.OfType<IManagedTemplatePackageProvider>().FirstOrDefault(p => p.Factory.Id == id);