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