1 write to Details
Microsoft.TemplateEngine.Abstractions (1)
Installer\InstallRequest.cs (1)
21Details = details ?? new Dictionary<string, string>();
7 references to Details
Microsoft.TemplateEngine.Abstractions (3)
Installer\InstallerConstants.cs (3)
12/// Defines the key for <see cref="InstallRequest.Details"/> to specify additional NuGet sources to be used on installation. Supported by NuGet installer. 24/// Defines the key for <see cref="InstallRequest.Details"/> to specify that interactive mode should be used on installation. Supported by NuGet installer. 29/// Defines the key for <see cref="InstallRequest.Details"/> to allow prerelease packages to be installed when no version is specified. Supported by NuGet installer.
Microsoft.TemplateEngine.Edge (4)
Installers\NuGet\NuGetInstaller.cs (4)
222if (installRequest.Details != null && installRequest.Details.TryGetValue(InstallerConstants.NuGetSourcesKey, out string nugetSources)) 226bool includePrerelease = installRequest.Details != null && installRequest.Details.TryGetValue(InstallerConstants.PrereleaseModeKey, out _);