7
7
8
8
namespace DynamoDev . StarterKitExtension
9
9
{
10
+ public enum DynamoProjectType
11
+ {
12
+ ZeroTouch ,
13
+ ExplicitNode ,
14
+ ViewExtension
15
+ }
16
+
10
17
public class WizardRoot : IWizard
11
18
{
12
19
private const string WIZARD_TITLE = "Dynamo Dev Starter Kit" ;
13
20
public static Dictionary < string , string > GlobalDictionary = new Dictionary < string , string > ( ) ;
14
21
22
+
15
23
private string InstanceTitle { get ; set ; }
16
- private bool IsSingleProjectWizard = true ;
24
+ private WizardRunKind runKind { get ; set ; }
17
25
private PackageDefinitionView view ;
18
26
private string DynamoSandbox2path = @"C:\Program Files\Dynamo\Dynamo Core\2\DynamoSandbox.exe" ;
19
27
private string DynamoSandbox1path = @"C:\Program Files\Dynamo\Dynamo Revit\{0}\DynamoSandbox.exe" ;
@@ -26,7 +34,7 @@ public void BeforeOpeningFile(ProjectItem projectItem)
26
34
27
35
public void ProjectFinishedGenerating ( Project project )
28
36
{
29
- if ( IsSingleProjectWizard )
37
+ if ( this . runKind != WizardRunKind . AsMultiProject )
30
38
Helpers . RestorePackages ( project ) ;
31
39
}
32
40
@@ -64,21 +72,30 @@ public void RunStarted(object automationObject,
64
72
Dictionary < string , string > replacementsDictionary ,
65
73
WizardRunKind runKind , object [ ] customParams )
66
74
{
75
+ this . runKind = runKind ;
67
76
GlobalDictionary [ "$saferootprojectname$" ] = replacementsDictionary [ "$safeprojectname$" ] ;
68
77
string destinationDirectory = replacementsDictionary [ "$destinationdirectory$" ] ;
69
- string projectType = replacementsDictionary [ "$projecttype$" ] ;
70
- this . InstanceTitle = $ "{ WIZARD_TITLE } - { projectType } ";
78
+
79
+ if ( ! Enum . TryParse ( replacementsDictionary [ "$dynamoprojecttype$" ] , out DynamoProjectType projectType ) )
80
+ throw new Exception ( "Template doesn't have a valid '$dynamoprojecttype$' custom parameter!" ) ;
71
81
72
82
PackageDefinitionViewModel viewModel = new PackageDefinitionViewModel ( ) ;
73
83
viewModel . PackageName = replacementsDictionary [ "$safeprojectname$" ] ;
74
- viewModel . AddAssembly ( replacementsDictionary [ "$safeprojectname$" ] , "1.0.0.0" ) ;
75
84
76
- if ( runKind == WizardRunKind . AsMultiProject )
85
+ switch ( projectType )
77
86
{
78
- viewModel . AddAssembly ( replacementsDictionary [ "$safeprojectname$" ] + ".UI" , "1.0.0.0" ) ;
79
- IsSingleProjectWizard = false ;
87
+ case DynamoProjectType . ZeroTouch :
88
+ viewModel . AddAssembly ( replacementsDictionary [ "$safeprojectname$" ] , "1.0.0.0" ) ;
89
+ break ;
90
+ case DynamoProjectType . ExplicitNode :
91
+ viewModel . AddAssembly ( replacementsDictionary [ "$safeprojectname$" ] , "1.0.0.0" ) ;
92
+ viewModel . AddAssembly ( replacementsDictionary [ "$safeprojectname$" ] + ".UI" , "1.0.0.0" ) ;
93
+ break ;
94
+ default :
95
+ break ;
80
96
}
81
-
97
+
98
+ this . InstanceTitle = $ "{ WIZARD_TITLE } - { projectType } ";
82
99
view = new PackageDefinitionView ( viewModel )
83
100
{
84
101
Title = this . InstanceTitle ,
0 commit comments