Skip to content

Commit 8f982e1

Browse files
committed
updating dynamo project type
1 parent 31aece4 commit 8f982e1

File tree

4 files changed

+30
-13
lines changed

4 files changed

+30
-13
lines changed

DynamoDev.ExplicitNode/ProjectRoot.vstemplate

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</ProjectTemplateLink>
2525
</ProjectCollection>
2626
<CustomParameters>
27-
<CustomParameter Name="$projecttype$" Value="ExplicitNode"/>
27+
<CustomParameter Name="$dynamoprojecttype$" Value="ExplicitNode"/>
2828
</CustomParameters>
2929
</TemplateContent>
3030
<WizardExtension>

DynamoDev.StarterKitExtension/WizardRoot.cs

+26-9
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,21 @@
77

88
namespace DynamoDev.StarterKitExtension
99
{
10+
public enum DynamoProjectType
11+
{
12+
ZeroTouch,
13+
ExplicitNode,
14+
ViewExtension
15+
}
16+
1017
public class WizardRoot : IWizard
1118
{
1219
private const string WIZARD_TITLE = "Dynamo Dev Starter Kit";
1320
public static Dictionary<string, string> GlobalDictionary = new Dictionary<string, string>();
1421

22+
1523
private string InstanceTitle { get; set; }
16-
private bool IsSingleProjectWizard = true;
24+
private WizardRunKind runKind { get; set; }
1725
private PackageDefinitionView view;
1826
private string DynamoSandbox2path = @"C:\Program Files\Dynamo\Dynamo Core\2\DynamoSandbox.exe";
1927
private string DynamoSandbox1path = @"C:\Program Files\Dynamo\Dynamo Revit\{0}\DynamoSandbox.exe";
@@ -26,7 +34,7 @@ public void BeforeOpeningFile(ProjectItem projectItem)
2634

2735
public void ProjectFinishedGenerating(Project project)
2836
{
29-
if (IsSingleProjectWizard)
37+
if (this.runKind != WizardRunKind.AsMultiProject)
3038
Helpers.RestorePackages(project);
3139
}
3240

@@ -64,21 +72,30 @@ public void RunStarted(object automationObject,
6472
Dictionary<string, string> replacementsDictionary,
6573
WizardRunKind runKind, object[] customParams)
6674
{
75+
this.runKind = runKind;
6776
GlobalDictionary["$saferootprojectname$"] = replacementsDictionary["$safeprojectname$"];
6877
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!");
7181

7282
PackageDefinitionViewModel viewModel = new PackageDefinitionViewModel();
7383
viewModel.PackageName = replacementsDictionary["$safeprojectname$"];
74-
viewModel.AddAssembly(replacementsDictionary["$safeprojectname$"], "1.0.0.0");
7584

76-
if (runKind == WizardRunKind.AsMultiProject)
85+
switch (projectType)
7786
{
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;
8096
}
81-
97+
98+
this.InstanceTitle = $"{WIZARD_TITLE} - {projectType}";
8299
view = new PackageDefinitionView(viewModel)
83100
{
84101
Title = this.InstanceTitle,

DynamoDev.ViewExtension/DynamoDev.ViewExtension.vstemplate

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</Folder>
2929
</Project>
3030
<CustomParameters>
31-
<CustomParameter Name="$projecttype$" Value="ViewExtension"/>
31+
<CustomParameter Name="$dynamoprojecttype$" Value="ViewExtension"/>
3232
</CustomParameters>
3333
</TemplateContent>
3434
<WizardExtension>

DynamoDev.ZeroTouch/DynamoDev.ZeroTouch.vstemplate

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<DefaultName>Dynamo_ZeroTouch</DefaultName>
1313
<ProvideDefaultName>true</ProvideDefaultName>
1414
</TemplateData>
15-
<TemplateContent>
15+
<TemplateContent>
1616
<Project File="ProjectTemplate.csproj" ReplaceParameters="true">
1717
<ProjectItem ReplaceParameters="true" TargetFileName="Properties\AssemblyInfo.cs">AssemblyInfo.cs</ProjectItem>
1818
<ProjectItem ReplaceParameters="true" TargetFileName="src\HelloDynamo.cs" OpenInEditor="true">HelloDynamo.cs</ProjectItem>
@@ -25,7 +25,7 @@
2525
</Folder>
2626
</Project>
2727
<CustomParameters>
28-
<CustomParameter Name="$projecttype$" Value="ZeroTouch"/>
28+
<CustomParameter Name="$dynamoprojecttype$" Value="ZeroTouch"/>
2929
</CustomParameters>
3030
</TemplateContent>
3131
<WizardExtension>

0 commit comments

Comments
 (0)