_copyAll()

in generators/app/index.js [120:139]


  _copyAll(rootPath, destinationPath) {
    super._copyTpl(this.templatePath(`${rootPath}/**/*`), destinationPath, {
      exactVersion: this.options.sitecoreUpdate.exactVersion,
      majorVersion: this.options.sitecoreUpdate.majorVersion,
      netFrameworkVersion: this.options.sitecoreUpdate.netFrameworkVersion,
      kernelVersion: this.options.sitecoreUpdate.kernelVersion,
      solutionX: this.options.solutionName,
      vagrantBoxNameX: this.options.vagrantBoxName,
      solutionUriX: this.options.solutionNameUri,
      hostNamesX: this.options.hostNames || [],
      supportHelix20X: this.options.supportHelix20,
      codeFolderX: this.options.codeFolderName,
	    utils: utils
    }, {
      ...super._baseGlobOptions(),
      ignore: [...baseIgnore, ...['**/*.dll', '**/*.yml']]
    }, {
      preProcessPath: this._processPathSolutionToken
    });
  }