We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 75fe394 + 0734be4 commit df2a240Copy full SHA for df2a240
src/Moryx.Cli.Template/Template.cs
@@ -78,15 +78,11 @@ public static List<string> Product(this List<string> list)
78
79
public static List<string> Step(this List<string> list)
80
{
81
- var whitelist = new List<string>(){
82
- "SomeCapabilities",
83
- "SomeActivity.cs",
84
- "SomeActivityResults.cs",
85
- "SomeParameters.cs",
86
- "SomeTask.cs",
87
- "ISomeResource.cs",
88
- "SomeCell.cs",
89
- };
+ var whitelist = list
+ .Where(e => e.Contains("Some"))
+ .ToList();
+ whitelist.Add("SimulatedInOutDriver.cs");
+
90
return list
91
.Intersect(whitelist, new ListComparer())
92
.ToList();
0 commit comments