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