10 references to InstallationScope
Microsoft.TemplateEngine.Cli (1)
TemplatePackageCoordinator.cs (1)
203var managedSourceProvider = _templatePackageManager.GetBuiltInManagedProvider(InstallationScope.Global);
Microsoft.TemplateEngine.Edge (4)
Settings\TemplatePackageManager.cs (4)
132/// Returns built-in <see cref="IManagedTemplatePackageProvider"/> of specified <see cref="InstallationScope"/>. 136public IManagedTemplatePackageProvider GetBuiltInManagedProvider(InstallationScope scope = InstallationScope.Global) 140case InstallationScope.Global:
Microsoft.TemplateEngine.IDE (5)
Bootstrapper.cs (5)
261/// <param name="scope"><see cref="InstallationScope"/> to use.</param> 264public Task<IReadOnlyList<InstallResult>> InstallTemplatePackagesAsync(IEnumerable<InstallRequest> installRequests, InstallationScope scope = InstallationScope.Global, CancellationToken cancellationToken = default) 277case InstallationScope.Global: 280managedPackageProvider = _templatePackagesManager.GetBuiltInManagedProvider(InstallationScope.Global);