UNPKG

generator-jhipster-dotnetcore

Version:

[![NPM version][npm-image]][npm-url] [![Documentation Status](https://readthedocs.org/projects/jhipsternet/badge/?version=latest)](https://jhipsternet.readthedocs.io/en/latest/?badge=latest) [![Generator Build Status][github-actions-generator-image]][gith

21 lines (18 loc) 619 B
import BaseApplicationGenerator from 'generator-jhipster/generators/base-application'; import { files } from './files.js'; export default class extends BaseApplicationGenerator { constructor(args, opts, features) { super(args, opts, { ...features, queueCommandTasks: true, sbsBlueprint: true }); } get [BaseApplicationGenerator.WRITING]() { return this.asWritingTaskGroup({ async writingDotNetFiles({ application }) { this.removeFile('sonar-project.properties'); await this.writeFiles({ sections: files, context: application, }); }, }); } }