Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManish Sinha <manish.sinha@xamarin.com>2015-07-28 23:59:34 +0300
committerManish Sinha <manish.sinha@xamarin.com>2015-07-29 00:00:23 +0300
commit14d5b800d1e6f797df943ce1afdd1ce552474601 (patch)
tree681b6d377f60354ab5a7d5a99e5d6a65250ef78c /main/tests/UserInterfaceTests/TemplateTestOptions.cs
parentfa846d70ca506d8908de40760f91f0d613b797ff (diff)
[UITest] Add the ability to add a new Project to existing solution
Diffstat (limited to 'main/tests/UserInterfaceTests/TemplateTestOptions.cs')
-rw-r--r--main/tests/UserInterfaceTests/TemplateTestOptions.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/main/tests/UserInterfaceTests/TemplateTestOptions.cs b/main/tests/UserInterfaceTests/TemplateTestOptions.cs
index 28d912d96a..9469eb80dd 100644
--- a/main/tests/UserInterfaceTests/TemplateTestOptions.cs
+++ b/main/tests/UserInterfaceTests/TemplateTestOptions.cs
@@ -92,6 +92,16 @@ namespace UserInterfaceTests
SolutionName = ProjectName;
}
+ public static ProjectDetails ToExistingSolution (string solutionName, string projectName)
+ {
+ return new ProjectDetails {
+ ProjectName = projectName,
+ SolutionName = solutionName,
+ AddProjectToExistingSolution = true,
+ SolutionLocation = null
+ };
+ }
+
public string ProjectName { get; set; }
public string SolutionName { get; set; }
@@ -99,6 +109,8 @@ namespace UserInterfaceTests
public string SolutionLocation { get; set; }
public bool ProjectInSolution { get; set; }
+
+ public bool AddProjectToExistingSolution { get; set; }
}
public class NewFileOptions