mirror of https://github.com/abpframework/abp.git
Browse Source
When generating a project with a company name containing dots (e.g., 'Demo.App.QoL'), the template replacement was incorrectly camelCasing the company name as 'demo.App' instead of 'demo.app'. This was because SolutionRenamer used ToCamelCase() on the entire string rather than on each dot-separated segment individually. The runtime JS proxy generator (JQueryProxyScriptGenerator.CamelCaseWithNamespace) applies camelCase to each segment, causing a mismatch. Added ToCamelCaseWithNamespace() helper to match runtime behavior.pull/24877/head
1 changed files with 14 additions and 3 deletions
Loading…
Reference in new issue