13 references to ComponentsLocation
Microsoft.Build.Tasks.Core (13)
BootstrapperUtil\BootstrapperBuilder.cs (5)
193if (settings.ComponentsLocation == ComponentsLocation.HomeSite) 420public string[] GetOutputFolders(string[] productCodes, string culture, string fallbackCulture, ComponentsLocation componentsLocation) 1464if (settings.ComponentsLocation == ComponentsLocation.Relative || !VerifyHomeSiteInformation(packageFileNode, builder, settings, _results)) 2068if (settings.ComponentsLocation != ComponentsLocation.HomeSite) 2144else if (settings.ComponentsLocation == ComponentsLocation.HomeSite)
BootstrapperUtil\BuildSettings.cs (2)
46public ComponentsLocation ComponentsLocation { get; set; } = ComponentsLocation.HomeSite;
BootstrapperUtil\Interfaces.cs (1)
112ComponentsLocation ComponentsLocation { get; set; }
GenerateBootstrapper.cs (5)
164private ComponentsLocation ConvertStringToComponentsLocation(string parameterValue) 168return Deployment.Bootstrapper.ComponentsLocation.HomeSite; 173return (ComponentsLocation)Enum.Parse(typeof(ComponentsLocation), parameterValue, false); 178return Deployment.Bootstrapper.ComponentsLocation.HomeSite;