10 references to InstallationScope
Microsoft.TemplateEngine.Cli (1)
TemplatePackageCoordinator.cs (1)
203
var 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
"/>.
136
public IManagedTemplatePackageProvider GetBuiltInManagedProvider(
InstallationScope
scope =
InstallationScope
.Global)
140
case
InstallationScope
.Global:
Microsoft.TemplateEngine.IDE (5)
Bootstrapper.cs (5)
261
/// <param name="scope"><see cref="
InstallationScope
"/> to use.</param>
264
public Task<IReadOnlyList<InstallResult>> InstallTemplatePackagesAsync(IEnumerable<InstallRequest> installRequests,
InstallationScope
scope =
InstallationScope
.Global, CancellationToken cancellationToken = default)
277
case
InstallationScope
.Global:
280
managedPackageProvider = _templatePackagesManager.GetBuiltInManagedProvider(
InstallationScope
.Global);