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 7f1d7f9 + b7786c6 commit 52da81cCopy full SHA for 52da81c
src/Moryx.Cli.Commands/AddProducts.cs
@@ -90,15 +90,15 @@ private static GenericTypeConfiguration BuildProductTypeConfiguration(string sol
90
=> new()
91
{
92
JsonColumn = "Text8",
93
- TargetType = $"Moryx.{solutionName}.Products.{product}Type",
+ TargetType = $"{solutionName}.Products.{product}Type",
94
PropertyConfigs = new List<PropertyMapperConfig>(),
95
PluginName = "GenericTypeStrategy",
96
};
97
98
private static ProductInstanceConfiguration BuildProductInstanceConfiguration(string solutionName, string product)
99
100
101
- TargetType = $"Moryx.{solutionName}.Products.{product}Instance",
+ TargetType = $"{solutionName}.Products.{product}Instance",
102
PluginName = "SkipInstancesStrategy",
103
104
}
0 commit comments