9 references to InstallerConstants
Microsoft.TemplateEngine.Abstractions (1)
Installer\InstallRequest.cs (1)
54/// <remarks>The keys supported by default installers are defined in <see cref="InstallerConstants"/>.</remarks>
Microsoft.TemplateEngine.Cli (4)
TemplatePackageCoordinator.cs (4)
195details[InstallerConstants.NuGetSourcesKey] = string.Join(InstallerConstants.NuGetSourcesSeparator.ToString(), args.AdditionalSources); 199details[InstallerConstants.InteractiveModeKey] = "true"; 203details[InstallerConstants.PrereleaseModeKey] = "true";
Microsoft.TemplateEngine.Edge (4)
Installers\NuGet\NuGetInstaller.cs (4)
222if (installRequest.Details != null && installRequest.Details.TryGetValue(InstallerConstants.NuGetSourcesKey, out string nugetSources)) 224additionalNuGetSources = nugetSources.Split(InstallerConstants.NuGetSourcesSeparator); 226bool includePrerelease = installRequest.Details != null && installRequest.Details.TryGetValue(InstallerConstants.PrereleaseModeKey, out _); 385installationDetails.Add(InstallerConstants.NuGetSourcesKey, nuGetManagedSource.NuGetSource!);