7 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 (3)
TemplatePackageCoordinator.cs (3)
195details[InstallerConstants.NuGetSourcesKey] = string.Join(InstallerConstants.NuGetSourcesSeparator.ToString(), args.AdditionalSources); 199details[InstallerConstants.InteractiveModeKey] = "true";
Microsoft.TemplateEngine.Edge (3)
Installers\NuGet\NuGetInstaller.cs (3)
222if (installRequest.Details != null && installRequest.Details.TryGetValue(InstallerConstants.NuGetSourcesKey, out string nugetSources)) 224additionalNuGetSources = nugetSources.Split(InstallerConstants.NuGetSourcesSeparator); 383installationDetails.Add(InstallerConstants.NuGetSourcesKey, nuGetManagedSource.NuGetSource!);