namespace E2ETests { /// /// Summary description for StartParameters /// public class StartParameters { public ServerType ServerType { get; set; } public DotnetFlavor DotnetFlavor { get; set; } public DotnetArchitecture DotnetArchitecture { get; set; } public string EnvironmentName { get; set; } public string ApplicationHostConfigTemplateContent { get; set; } public string ApplicationHostConfigLocation { get; set; } public string SiteName { get; set; } public string ApplicationPath { get; set; } public bool PackApplicationBeforeStart { get; set; } public string PackedApplicationRootPath { get; set; } public string Dotnet { get; set; } public IISApplication IISApplication { get; set; } } }