Remove duplicated operations from the file name (#1256)

This commit is contained in:
Xiaogang 2023-10-16 14:38:48 +08:00 коммит произвёл GitHub
Родитель bd9ad4e254
Коммит 5ba50797ea
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -49,7 +49,7 @@ async function generateMethodGroups(project: Project) {
continue;
}
// generate method group class
const key = operationGroup.$key === 'Operations' ? '' : operationGroup.$key;
const key = project.helper.ConvertToValidMethodGroupKey(operationGroup.$key);
const content = await ejs.renderFile(path, { methodGroup: operationGroup, project: project });
project.state.writeFile(`${project.baseFolder}\\${key}Operations.cs`, content, undefined, 'source-file-csharp');
// generate method group interface