From db99b50b5deaa5bbc32cafc91a43dfbd068f6684 Mon Sep 17 00:00:00 2001 From: nicolas63 Date: Wed, 21 Dec 2022 09:56:53 +0100 Subject: [PATCH 1/3] Fix remove fields --- generators/entity/prompts.js | 125 ++++++++++++++++++----------------- 1 file changed, 65 insertions(+), 60 deletions(-) diff --git a/generators/entity/prompts.js b/generators/entity/prompts.js index b171d7d9a..6422dcb22 100644 --- a/generators/entity/prompts.js +++ b/generators/entity/prompts.js @@ -167,39 +167,42 @@ function askForFields() { function askForFieldsToRemove() { const context = this.context; // prompt only if data is imported from a file - if (!context.useConfigurationFile || context.updateEntity !== 'remove' || context.fieldNameChoices.length === 0) { - return; + if (!context.useConfigurationFile || context.updateEntity !== 'remove' || this.entityConfig.fields.length === 0) { + return undefined; } - const done = this.async(); - + const prompts = [ - { - type: 'checkbox', - name: 'fieldsToRemove', - message: 'Please choose the fields you want to remove', - choices: context.fieldNameChoices, - }, - { - when: response => response.fieldsToRemove.length !== 0, - type: 'confirm', - name: 'confirmRemove', - message: 'Are you sure to remove these fields?', - default: true, - }, + { + type: 'checkbox', + name: 'fieldsToRemove', + message: 'Please choose the fields you want to remove', + choices: () => + this.entityConfig.fields.map(field => { + return { name: field.fieldName, value: field.fieldName }; + }), + }, + { + when: response => response.fieldsToRemove.length !== 0, + type: 'confirm', + name: 'confirmRemove', + message: 'Are you sure to remove these fields?', + default: true, + }, ]; - this.prompt(prompts).then(props => { - if (props.confirmRemove) { - this.log(chalk.red(`\nRemoving fields: ${props.fieldsToRemove}\n`)); - for (let i = this.entityConfig.fields.length - 1; i >= 0; i -= 1) { - const field = this.entityConfig.fields[i]; - if (props.fieldsToRemove.filter(val => val === field.fieldName).length > 0) { - this.entityConfig.fields.splice(i, 1); - } - } + return this.prompt(prompts).then(props => { + if (props.confirmRemove) { + this.log(chalk.red(`\nRemoving fields: ${props.fieldsToRemove}\n`)); + const fields = this.entityConfig.fields; + for (let i = fields.length - 1; i >= 0; i -= 1) { + const field = this.entityConfig.fields[i]; + if (props.fieldsToRemove.filter(val => val === field.fieldName).length > 0) { + fields.splice(i, 1); + } } - done(); + this.entityConfig.fields = fields; + } }); -} + } function askForRelationships() { const context = this.context; @@ -219,43 +222,45 @@ function askForRelationships() { function askForRelationsToRemove() { const context = this.context; // prompt only if data is imported from a file - if (!context.useConfigurationFile || context.updateEntity !== 'remove' || context.relNameChoices.length === 0) { - return; + if (!context.useConfigurationFile || context.updateEntity !== 'remove' || this.entityConfig.relationships.length === 0) { + return undefined; } - /* if (context.databaseType === 'cassandra') { - return; - } */ - - const done = this.async(); - + const prompts = [ - { - type: 'checkbox', - name: 'relsToRemove', - message: 'Please choose the relationships you want to remove', - choices: context.relNameChoices, - }, - { - when: response => response.relsToRemove.length !== 0, - type: 'confirm', - name: 'confirmRemove', - message: 'Are you sure to remove these relationships?', - default: true, - }, + { + type: 'checkbox', + name: 'relsToRemove', + message: 'Please choose the relationships you want to remove', + choices: () => + this.entityConfig.relationships.map(rel => { + return { + name: `${rel.relationshipName}:${rel.relationshipType}`, + value: `${rel.relationshipName}:${rel.relationshipType}`, + }; + }), + }, + { + when: response => response.relsToRemove.length !== 0, + type: 'confirm', + name: 'confirmRemove', + message: 'Are you sure to remove these relationships?', + default: true, + }, ]; - this.prompt(prompts).then(props => { - if (props.confirmRemove) { - this.log(chalk.red(`\nRemoving relationships: ${props.relsToRemove}\n`)); - for (let i = this.entityConfig.relationships.length - 1; i >= 0; i -= 1) { - const rel = this.entityConfig.relationships[i]; - if (props.relsToRemove.filter(val => val === `${rel.relationshipName}:${rel.relationshipType}`).length > 0) { - this.entityConfig.relationships.splice(i, 1); - } - } + return this.prompt(prompts).then(props => { + if (props.confirmRemove) { + this.log(chalk.red(`\nRemoving relationships: ${props.relsToRemove}\n`)); + const relationships = this.entityConfig.relationships; + for (let i = relationships.length - 1; i >= 0; i -= 1) { + const rel = relationships[i]; + if (props.relsToRemove.filter(val => val === `${rel.relationshipName}:${rel.relationshipType}`).length > 0) { + relationships.splice(i, 1); + } } - done(); + this.entityConfig.relationships = relationships; + } }); -} + } function askForTableName() { const context = this.context; From ba5496f131a362ece43857f4ecf0e8c07ae62962 Mon Sep 17 00:00:00 2001 From: nicolas63 Date: Wed, 21 Dec 2022 10:00:32 +0100 Subject: [PATCH 2/3] Fix lint --- generators/entity/prompts.js | 122 +++++++++++++++++------------------ 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/generators/entity/prompts.js b/generators/entity/prompts.js index 6422dcb22..3af9cc76c 100644 --- a/generators/entity/prompts.js +++ b/generators/entity/prompts.js @@ -168,41 +168,41 @@ function askForFieldsToRemove() { const context = this.context; // prompt only if data is imported from a file if (!context.useConfigurationFile || context.updateEntity !== 'remove' || this.entityConfig.fields.length === 0) { - return undefined; + return undefined; } - + const prompts = [ - { - type: 'checkbox', - name: 'fieldsToRemove', - message: 'Please choose the fields you want to remove', - choices: () => - this.entityConfig.fields.map(field => { - return { name: field.fieldName, value: field.fieldName }; - }), - }, - { - when: response => response.fieldsToRemove.length !== 0, - type: 'confirm', - name: 'confirmRemove', - message: 'Are you sure to remove these fields?', - default: true, - }, + { + type: 'checkbox', + name: 'fieldsToRemove', + message: 'Please choose the fields you want to remove', + choices: () => + this.entityConfig.fields.map(field => { + return { name: field.fieldName, value: field.fieldName }; + }), + }, + { + when: response => response.fieldsToRemove.length !== 0, + type: 'confirm', + name: 'confirmRemove', + message: 'Are you sure to remove these fields?', + default: true, + }, ]; return this.prompt(prompts).then(props => { - if (props.confirmRemove) { - this.log(chalk.red(`\nRemoving fields: ${props.fieldsToRemove}\n`)); - const fields = this.entityConfig.fields; - for (let i = fields.length - 1; i >= 0; i -= 1) { - const field = this.entityConfig.fields[i]; - if (props.fieldsToRemove.filter(val => val === field.fieldName).length > 0) { - fields.splice(i, 1); - } + if (props.confirmRemove) { + this.log(chalk.red(`\nRemoving fields: ${props.fieldsToRemove}\n`)); + const fields = this.entityConfig.fields; + for (let i = fields.length - 1; i >= 0; i -= 1) { + const field = this.entityConfig.fields[i]; + if (props.fieldsToRemove.filter(val => val === field.fieldName).length > 0) { + fields.splice(i, 1); + } + } + this.entityConfig.fields = fields; } - this.entityConfig.fields = fields; - } }); - } +} function askForRelationships() { const context = this.context; @@ -223,44 +223,44 @@ function askForRelationsToRemove() { const context = this.context; // prompt only if data is imported from a file if (!context.useConfigurationFile || context.updateEntity !== 'remove' || this.entityConfig.relationships.length === 0) { - return undefined; + return undefined; } - + const prompts = [ - { - type: 'checkbox', - name: 'relsToRemove', - message: 'Please choose the relationships you want to remove', - choices: () => - this.entityConfig.relationships.map(rel => { - return { - name: `${rel.relationshipName}:${rel.relationshipType}`, - value: `${rel.relationshipName}:${rel.relationshipType}`, - }; - }), - }, - { - when: response => response.relsToRemove.length !== 0, - type: 'confirm', - name: 'confirmRemove', - message: 'Are you sure to remove these relationships?', - default: true, - }, + { + type: 'checkbox', + name: 'relsToRemove', + message: 'Please choose the relationships you want to remove', + choices: () => + this.entityConfig.relationships.map(rel => { + return { + name: `${rel.relationshipName}:${rel.relationshipType}`, + value: `${rel.relationshipName}:${rel.relationshipType}`, + }; + }), + }, + { + when: response => response.relsToRemove.length !== 0, + type: 'confirm', + name: 'confirmRemove', + message: 'Are you sure to remove these relationships?', + default: true, + }, ]; return this.prompt(prompts).then(props => { - if (props.confirmRemove) { - this.log(chalk.red(`\nRemoving relationships: ${props.relsToRemove}\n`)); - const relationships = this.entityConfig.relationships; - for (let i = relationships.length - 1; i >= 0; i -= 1) { - const rel = relationships[i]; - if (props.relsToRemove.filter(val => val === `${rel.relationshipName}:${rel.relationshipType}`).length > 0) { - relationships.splice(i, 1); - } + if (props.confirmRemove) { + this.log(chalk.red(`\nRemoving relationships: ${props.relsToRemove}\n`)); + const relationships = this.entityConfig.relationships; + for (let i = relationships.length - 1; i >= 0; i -= 1) { + const rel = relationships[i]; + if (props.relsToRemove.filter(val => val === `${rel.relationshipName}:${rel.relationshipType}`).length > 0) { + relationships.splice(i, 1); + } + } + this.entityConfig.relationships = relationships; } - this.entityConfig.relationships = relationships; - } }); - } +} function askForTableName() { const context = this.context; From 504ff28c3107412620737214526e2a25f0fc4b80 Mon Sep 17 00:00:00 2001 From: jhipster-bot Date: Sat, 31 Dec 2022 01:23:04 +0000 Subject: [PATCH 3/3] feat: update copyright headers --- LICENSE | 2 +- NOTICE | 2 +- generators/app/prompts.js | 2 +- generators/client/files-angular.js | 2 +- generators/client/files-blazor.js | 2 +- generators/client/files-common.js | 2 +- generators/client/files-react.js | 2 +- generators/client/files-vue.js | 2 +- generators/client/files-xamarin.js | 2 +- generators/client/index.js | 2 +- generators/client/needle-api/needle-client-blazor.js | 2 +- generators/client/needle-api/needle-client-xamarin.js | 2 +- generators/client/prompts.js | 2 +- .../src/Project.Client.Shared/Constants/ErrorConst.cs.ejs | 2 +- .../blazor/src/Project.Client.Shared/Constants/TypeAlert.cs.ejs | 2 +- .../blazor/src/Project.Client.Shared/Models/JhiAlert.cs.ejs | 2 +- .../client/templates/blazor/src/Project.Client/App.razor.cs.ejs | 2 +- .../src/Project.Client/AutoMapper/AutoMapperProfile.cs.ejs | 2 +- .../templates/blazor/src/Project.Client/Models/BaseModel.cs.ejs | 2 +- .../blazor/src/Project.Client/Models/ConfigurationModel.cs.ejs | 2 +- .../templates/blazor/src/Project.Client/Models/JwtToken.cs.ejs | 2 +- .../blazor/src/Project.Client/Models/LoginModel.cs.ejs | 2 +- .../src/Project.Client/Models/Register/RegisterModel.cs.ejs | 2 +- .../Project.Client/Models/Register/RegisterResultRequest.cs.ejs | 2 +- .../src/Project.Client/Models/Register/UserSaveModel.cs.ejs | 2 +- .../templates/blazor/src/Project.Client/Models/UserModel.cs.ejs | 2 +- .../src/Project.Client/Pages/Account/Register.razor.cs.ejs | 2 +- .../Pages/Admin/UserManagement/UserDetail.razor.cs.ejs | 2 +- .../Pages/Admin/UserManagement/UserManagement.razor.cs.ejs | 2 +- .../Pages/Admin/UserManagement/UserUpdate.razor.cs.ejs | 2 +- .../blazor/src/Project.Client/Pages/Index.razor.cs.ejs | 2 +- .../blazor/src/Project.Client/Pages/Login.razor.cs.ejs | 2 +- .../src/Project.Client/Pages/Utils/INavigationService.cs.ejs | 2 +- .../src/Project.Client/Pages/Utils/NavigationService.cs.ejs | 2 +- .../Services/AccountServices/IRegisterService.cs.ejs | 2 +- .../Services/AccountServices/RegisterService.cs.ejs | 2 +- .../src/Project.Client/Services/AuthenticationService.cs.ejs | 2 +- .../Services/EntityServices/AbstractEntityService.cs.ejs | 2 +- .../Services/EntityServices/User/IUserService.cs.ejs | 2 +- .../Services/EntityServices/User/UserService.cs.ejs | 2 +- .../src/Project.Client/Services/IAuthenticationService.cs.ejs | 2 +- .../Project.Client/Shared/Components/AlertError.razor.cs.ejs | 2 +- .../blazor/src/Project.Client/Shared/DeleteModal.razor.cs.ejs | 2 +- .../blazor/src/Project.Client/Shared/NavMenu.razor.cs.ejs | 2 +- .../blazor/test/Project.Client.Test/AlertErrorTest.cs.ejs | 2 +- .../test/Project.Client.Test/Helpers/AuthorizationHelper.cs.ejs | 2 +- .../Helpers/MockAuthenticationService.cs.ejs | 2 +- .../Helpers/MockAuthorizationPolicyProvider.cs.ejs | 2 +- .../Project.Client.Test/Helpers/MockAuthorizationService.cs.ejs | 2 +- .../test/Project.Client.Test/Helpers/MockRegisterService.cs.ejs | 2 +- .../Project.Client.Test/Helpers/TestPolicyRequirement.cs.ejs | 2 +- .../templates/blazor/test/Project.Client.Test/IndexTest.cs.ejs | 2 +- .../templates/blazor/test/Project.Client.Test/LoginTest.cs.ejs | 2 +- .../Pages/Admin/UserManagement/UserDetailTest.cs.ejs | 2 +- .../blazor/test/Project.Client.Test/RegisterTest.cs.ejs | 2 +- .../src/Project.Client.Xamarin.Android/MainActivity.cs.ejs | 2 +- .../Project.Client.Xamarin.Android/SplashScreenActivity.cs.ejs | 2 +- .../xamarin/src/Project.Client.Xamarin.Core/App.cs.ejs | 2 +- .../xamarin/src/Project.Client.Xamarin.Core/AssemblyInfo.cs.ejs | 2 +- .../src/Project.Client.Xamarin.Core/FormsApp.xaml.cs.ejs | 2 +- .../src/Project.Client.Xamarin.Core/LinkerPreserve.cs.ejs | 2 +- .../src/Project.Client.Xamarin.Core/Models/JwtToken.cs.ejs | 2 +- .../src/Project.Client.Xamarin.Core/Models/LoginModel.cs.ejs | 2 +- .../Models/RegisterResultRequest.cs.ejs | 2 +- .../src/Project.Client.Xamarin.Core/Models/UserModel.cs.ejs | 2 +- .../src/Project.Client.Xamarin.Core/Models/UserSaveModel.cs.ejs | 2 +- .../Resources/Strings.Designer.cs.ejs | 2 +- .../Services/AbstractEntityService.cs.ejs | 2 +- .../Services/AuthenticationService.cs.ejs | 2 +- .../Project.Client.Xamarin.Core/Services/Configuration.cs.ejs | 2 +- .../Services/IAbstractEntityService.cs.ejs | 2 +- .../Services/IAuthenticationService.cs.ejs | 2 +- .../Services/IRegisterService.cs.ejs | 2 +- .../Project.Client.Xamarin.Core/Services/RegisterService.cs.ejs | 2 +- .../Project.Client.Xamarin.Core/ViewModels/BaseViewModel.cs.ejs | 2 +- .../Project.Client.Xamarin.Core/ViewModels/HomeViewModel.cs.ejs | 2 +- .../ViewModels/LoginViewModel.cs.ejs | 2 +- .../Project.Client.Xamarin.Core/ViewModels/MenuViewModel.cs.ejs | 2 +- .../ViewModels/RegisterViewModel.cs.ejs | 2 +- .../ViewModels/WelcomeViewModel.cs.ejs | 2 +- .../src/Project.Client.Xamarin.Core/Views/HomeView.xaml.cs.ejs | 2 +- .../src/Project.Client.Xamarin.Core/Views/LoginView.xaml.cs.ejs | 2 +- .../src/Project.Client.Xamarin.Core/Views/MenuPage.xaml.cs.ejs | 2 +- .../Project.Client.Xamarin.Core/Views/RegisterView.xaml.cs.ejs | 2 +- .../Project.Client.Xamarin.Core/Views/WelcomeView.xaml.cs.ejs | 2 +- .../Project.Client.Xamarin.Shared/Constants/ErrorConst.cs.ejs | 2 +- .../xamarin/src/Project.Client.Xamarin.iOS/Main.cs.ejs | 2 +- generators/common/files.js | 2 +- generators/common/index.js | 2 +- generators/common/templates/dotnetcore/Dockerfile-Back.ejs | 2 +- generators/common/templates/dotnetcore/README.md.ejs | 2 +- .../common/templates/dotnetcore/docker-entrypoint-back.sh.ejs | 2 +- .../common/templates/dotnetcore/docker-entrypoint-front.sh.ejs | 2 +- generators/dotnet.js | 2 +- generators/entities-client/index.js | 2 +- generators/entity-client/files-blazor.js | 2 +- generators/entity-client/files-xamarin.js | 2 +- .../templates/blazor/src/Project.Client/Models/Model.cs.ejs | 2 +- .../Project.Client/Pages/Entities/Entity/Entity.razor.cs.ejs | 2 +- .../Pages/Entities/Entity/EntityDetail.razor.cs.ejs | 2 +- .../Pages/Entities/Entity/EntityUpdate.razor.cs.ejs | 2 +- .../Services/EntityServices/EntityService/EntityService.cs.ejs | 2 +- .../Services/EntityServices/EntityService/IEntityService.cs.ejs | 2 +- .../Pages/Entities/Entity/EntityDetailTest.cs.ejs | 2 +- .../Project.Client.Test/Pages/Entities/Entity/EntityTest.cs.ejs | 2 +- .../Pages/Entities/Entity/EntityUpdateTest.cs.ejs | 2 +- .../templates/xamarin/src/Project.Client/Models/Model.cs.ejs | 2 +- .../xamarin/src/Project.Client/Services/EntityService.cs.ejs | 2 +- .../xamarin/src/Project.Client/Services/IEntityService.cs.ejs | 2 +- .../src/Project.Client/ViewModels/EntityViewModel.cs.ejs | 2 +- .../xamarin/src/Project.Client/Views/EntityView.xaml.cs.ejs | 2 +- generators/entity-i18n/index.js | 2 +- generators/entity-server/files.js | 2 +- .../src/Project.Application/Commands/EntityCreateCommand.cs.ejs | 2 +- .../Commands/EntityCreateCommandHandler.cs.ejs | 2 +- .../src/Project.Application/Commands/EntityDeleteCommand.cs.ejs | 2 +- .../Commands/EntityDeleteCommandHandler.cs.ejs | 2 +- .../src/Project.Application/Commands/EntityUpdateCommand.cs.ejs | 2 +- .../Commands/EntityUpdateCommandHandler.cs.ejs | 2 +- .../src/Project.Application/Queries/EntityGetAllQuery.cs.ejs | 2 +- .../Project.Application/Queries/EntityGetAllQueryHandler.cs.ejs | 2 +- .../src/Project.Application/Queries/EntityGetQuery.cs.ejs | 2 +- .../Project.Application/Queries/EntityGetQueryHandler.cs.ejs | 2 +- .../dotnetcore/src/Project.Crosscutting/Enums/Enum.cs.ejs | 2 +- .../dotnetcore/src/Project.Domain.Services/Service.cs.ejs | 2 +- .../dotnetcore/src/Project.Domain/Entities/Entity.cs.ejs | 2 +- .../Repositories/Interfaces/IEntityRepository.cs.ejs | 2 +- .../Repositories/Interfaces/IReadOnlyEntityRepository.cs.ejs | 2 +- .../src/Project.Domain/Services/Interfaces/IService.cs.ejs | 2 +- .../dotnetcore/src/Project.Dto/AuditedEntityBaseDto.cs.ejs | 2 +- .../templates/dotnetcore/src/Project.Dto/Dto.cs.ejs | 2 +- .../Data/ApplicationDatabaseContext.cs.ejs | 2 +- .../Data/Repositories/EntityRepository.cs.ejs | 2 +- .../Data/Repositories/ReadOnlyEntityRepository.cs.ejs | 2 +- .../Project.Test/Controllers/EntityControllerIntTest.cs.ejs | 2 +- generators/entity/prompts.js | 2 +- generators/generator-dotnetcore-constants.mjs | 2 +- generators/heroku/build.js | 2 +- generators/heroku/deploy.js | 2 +- generators/heroku/index.js | 2 +- generators/heroku/prompts.js | 2 +- generators/heroku/provision.js | 2 +- generators/heroku/templates/heroku.yml.ejs | 2 +- generators/languages/files-languages.js | 2 +- generators/server/files.js | 2 +- generators/server/index.js | 2 +- generators/server/needle-api/needle-server-gateway.js | 2 +- generators/server/prompts.js | 2 +- generators/server/templates/dotnetcore/docker/app.yml.ejs | 2 +- generators/server/templates/dotnetcore/docker/consul.yml.ejs | 2 +- generators/server/templates/dotnetcore/docker/keycloak.yml.ejs | 2 +- .../server/templates/dotnetcore/docker/monitoring.yml.ejs | 2 +- generators/server/templates/dotnetcore/docker/sonar.yml.ejs | 2 +- .../Project.Application/ApplicationClassesAssemblyHelper.cs.ejs | 2 +- .../Commands/Account/AccountActivateCommand.cs.ejs | 2 +- .../Commands/Account/AccountActivateCommandHandler.cs.ejs | 2 +- .../Commands/Account/AccountChangePasswordCommand.cs.ejs | 2 +- .../Commands/Account/AccountChangePasswordCommandHandler.cs.ejs | 2 +- .../Commands/Account/AccountCreateCommand.cs.ejs | 2 +- .../Commands/Account/AccountCreateCommandHandler.cs.ejs | 2 +- .../Commands/Account/AccountResetPasswordCommand.cs.ejs | 2 +- .../Commands/Account/AccountResetPasswordCommandHandler.cs.ejs | 2 +- .../Commands/Account/AccountResetPasswordFinishCommand.cs.ejs | 2 +- .../Account/AccountResetPasswordFinishCommandHandler.cs.ejs | 2 +- .../Commands/Account/AccountSaveCommand.cs.ejs | 2 +- .../Commands/Account/AccountSaveCommandHandler.cs.ejs | 2 +- .../Project.Application/Commands/User/UserCreateCommand.cs.ejs | 2 +- .../Commands/User/UserCreateCommandHandler.cs.ejs | 2 +- .../Project.Application/Commands/User/UserDeleteCommand.cs.ejs | 2 +- .../Commands/User/UserDeleteCommandHandler.cs.ejs | 2 +- .../Project.Application/Commands/User/UserUpdateCommand.cs.ejs | 2 +- .../Commands/User/UserUpdateCommandHandler.cs.ejs | 2 +- .../Commands/UserJwt/UserJwtAuthorizeCommand.cs.ejs | 2 +- .../Commands/UserJwt/UserJwtAuthorizeCommandHandler.cs.ejs | 2 +- .../dotnetcore/src/Project.Application/Project.csproj.ejs | 2 +- .../Queries/Account/AccountGetAuthenticatedQuery.cs.ejs | 2 +- .../Queries/Account/AccountGetAuthenticatedQueryHandler.cs.ejs | 2 +- .../Project.Application/Queries/Account/AccountGetQuery.cs.ejs | 2 +- .../Queries/Account/AccountGetQueryHandler.cs.ejs | 2 +- .../Queries/User/UserGetAllPublicUsersQuery.cs.ejs | 2 +- .../Queries/User/UserGetAllPublicUsersQueryHandler.cs.ejs | 2 +- .../src/Project.Application/Queries/User/UserGetAllQuery.cs.ejs | 2 +- .../Queries/User/UserGetAllQueryHandler.cs.ejs | 2 +- .../Queries/User/UserGetAuthoritiesQuery.cs.ejs | 2 +- .../Queries/User/UserGetAuthoritiesQueryHandler.cs.ejs | 2 +- .../src/Project.Application/Queries/User/UserGetQuery.cs.ejs | 2 +- .../Project.Application/Queries/User/UserGetQueryHandler.cs.ejs | 2 +- .../src/Project.Crosscutting/Constants/Constants.cs.ejs | 2 +- .../src/Project.Crosscutting/Constants/ErrorConstants.cs.ejs | 2 +- .../src/Project.Crosscutting/Constants/JwtConstants.cs.ejs | 2 +- .../src/Project.Crosscutting/Constants/RolesConstants.cs.ejs | 2 +- .../Exceptions/BadRequestAlertException.cs.ejs | 2 +- .../src/Project.Crosscutting/Exceptions/BaseException.cs.ejs | 2 +- .../Exceptions/EmailAlreadyUsedException.cs.ejs | 2 +- .../Exceptions/EmailNotFoundException.cs.ejs | 2 +- .../Exceptions/InternalServerErrorException.cs.ejs | 2 +- .../Exceptions/InvalidPasswordException.cs.ejs | 2 +- .../Exceptions/LoginAlreadyUsedException.cs.ejs | 2 +- .../dotnetcore/src/Project.Crosscutting/Project.csproj.ejs | 2 +- .../src/Project.Crosscutting/Utilities/RandomUtil.cs.ejs | 2 +- .../src/Project.Domain.Services/AuthenticationService.cs.ejs | 2 +- .../dotnetcore/src/Project.Domain.Services/MailService.cs.ejs | 2 +- .../dotnetcore/src/Project.Domain.Services/Project.csproj.ejs | 2 +- .../ServicesClassesAssemblyHelper.cs.ejs | 2 +- .../dotnetcore/src/Project.Domain.Services/UserService.cs.ejs | 2 +- .../src/Project.Domain/Entities/AuditedEntityBase.cs.ejs | 2 +- .../dotnetcore/src/Project.Domain/Entities/BaseEntity.cs.ejs | 2 +- .../Entities/Interfaces/IAuditedEntityBase.cs.ejs | 2 +- .../src/Project.Domain/Entities/MongoBaseEntity.cs.ejs | 2 +- .../dotnetcore/src/Project.Domain/Entities/Role.cs.ejs | 2 +- .../dotnetcore/src/Project.Domain/Entities/User.cs.ejs | 2 +- .../dotnetcore/src/Project.Domain/Entities/UserRole.cs.ejs | 2 +- .../templates/dotnetcore/src/Project.Domain/Project.csproj.ejs | 2 +- .../Repositories/Interfaces/IFluentRepository.cs.ejs | 2 +- .../Repositories/Interfaces/IGenericRepository.cs.ejs | 2 +- .../Repositories/Interfaces/INoSqlFluentRepository.cs.ejs | 2 +- .../Repositories/Interfaces/INoSqlGenericRepository.cs.ejs | 2 +- .../Interfaces/INoSqlReadOnlyGenericRepository.cs.ejs | 2 +- .../Repositories/Interfaces/IReadOnlyGenericRepository.cs.ejs | 2 +- .../Project.Domain/Repositories/Interfaces/IUnitOfWork.cs.ejs | 2 +- .../Services/Interfaces/IAuthenticationService.cs.ejs | 2 +- .../src/Project.Domain/Services/Interfaces/IMailService.cs.ejs | 2 +- .../src/Project.Domain/Services/Interfaces/IUserService.cs.ejs | 2 +- .../Services/Interfaces/ServicesInterfacesAssemblyHelper.cs.ejs | 2 +- .../dotnetcore/src/Project.Dto/KeyAndPasswordDto.cs.ejs | 2 +- .../server/templates/dotnetcore/src/Project.Dto/LoginDto.cs.ejs | 2 +- .../templates/dotnetcore/src/Project.Dto/ManagedUserDto.cs.ejs | 2 +- .../dotnetcore/src/Project.Dto/PasswordChangeDto.cs.ejs | 2 +- .../templates/dotnetcore/src/Project.Dto/ProfileInfoDto.cs.ejs | 2 +- .../templates/dotnetcore/src/Project.Dto/Project.csproj.ejs | 2 +- .../server/templates/dotnetcore/src/Project.Dto/UserDto.cs.ejs | 2 +- .../Configuration/IMongoDatabaseConfig.cs.ejs | 2 +- .../Configuration/MongoDatabaseConfig.cs.ejs | 2 +- .../Configuration/SecuritySettings.cs.ejs | 2 +- .../Data/ApplicationDatabaseContext.cs.ejs | 2 +- .../Data/Extensions/DbSetExtensions.cs.ejs | 2 +- .../Data/Extensions/NoSqlPagination.cs.ejs | 2 +- .../Data/Extensions/PropertyAccessorCache.cs.ejs | 2 +- .../Project.Infrastructure/Data/IMongoDatabaseContext.cs.ejs | 2 +- .../src/Project.Infrastructure/Data/MongoDatabaseContext.cs.ejs | 2 +- .../Data/Repositories/FluentRepository.cs.ejs | 2 +- .../Data/Repositories/GenericRepository.cs.ejs | 2 +- .../Data/Repositories/MongoDatabaseUserStore.cs.ejs | 2 +- .../Data/Repositories/MongoFluentRepository.cs.ejs | 2 +- .../Data/Repositories/MongoGenericRepository.cs.ejs | 2 +- .../Data/Repositories/MongoReadOnlyGenericRepository.cs.ejs | 2 +- .../Data/Repositories/NoSqlPagination.cs.ejs | 2 +- .../Data/Repositories/ReadOnlyGenericRepository.cs.ejs | 2 +- .../Project.Infrastructure/Data/Repositories/UnitOfWork.cs.ejs | 2 +- .../dotnetcore/src/Project.Infrastructure/Project.csproj.ejs | 2 +- .../src/Project/Configuration/AppSettingsStartup.cs.ejs | 2 +- .../Project/Configuration/AutoMapper/AutoMapperProfile.cs.ejs | 2 +- .../src/Project/Configuration/AutoMapperStartup.cs.ejs | 2 +- .../src/Project/Configuration/ConfigurationHelper.cs.ejs | 2 +- .../src/Project/Configuration/Consul/ConsulOptions.cs.ejs | 2 +- .../src/Project/Configuration/Consul/ConsulStartup.cs.ejs | 2 +- .../dotnetcore/src/Project/Configuration/DatabaseStartup.cs.ejs | 2 +- .../src/Project/Configuration/IMongoDatabaseConfig.cs.ejs | 2 +- .../dotnetcore/src/Project/Configuration/IdentityStartup.cs.ejs | 2 +- .../src/Project/Configuration/MongoDatabaseConfig.cs.ejs | 2 +- .../dotnetcore/src/Project/Configuration/MvcStartup.cs.ejs | 2 +- .../src/Project/Configuration/ProblemDetailsStartup.cs.ejs | 2 +- .../src/Project/Configuration/RepositoryStartup.cs.ejs | 2 +- .../dotnetcore/src/Project/Configuration/SecurityStartup.cs.ejs | 2 +- .../dotnetcore/src/Project/Configuration/ServiceStartup.cs.ejs | 2 +- .../dotnetcore/src/Project/Configuration/SwaggerStartup.cs.ejs | 2 +- .../dotnetcore/src/Project/Controllers/AccountController.cs.ejs | 2 +- .../src/Project/Controllers/ProfileInfoController.cs.ejs | 2 +- .../src/Project/Controllers/PublicUsersController.cs.ejs | 2 +- .../dotnetcore/src/Project/Controllers/UserJwtController.cs.ejs | 2 +- .../dotnetcore/src/Project/Controllers/UsersController.cs.ejs | 2 +- .../server/templates/dotnetcore/src/Project/Program.cs.ejs | 2 +- .../server/templates/dotnetcore/src/Project/Project.csproj.ejs | 2 +- .../dotnetcore/src/Project/Properties/launchSettings.json.ejs | 2 +- .../dotnetcore/src/Project/Security/BCryptPasswordHasher.cs.ejs | 2 +- .../src/Project/Security/Jwt/RoleClaimsTransformation.cs.ejs | 2 +- .../dotnetcore/src/Project/Security/Jwt/TokenProvider.cs.ejs | 2 +- .../dotnetcore/src/Project/Security/PoliciesConstants.cs.ejs | 2 +- .../src/Project/Security/UserNotActivatedException.cs.ejs | 2 +- .../src/Project/Security/UsernameNotFoundException.cs.ejs | 2 +- .../server/templates/dotnetcore/src/Project/Startup.cs.ejs | 2 +- .../src/Project/Web/Extensions/ActionResultExtensions.cs.ejs | 2 +- .../src/Project/Web/Extensions/ActionResultWithHeaders.cs.ejs | 2 +- .../src/Project/Web/Extensions/HttpRequestExtensions.cs.ejs | 2 +- .../src/Project/Web/Filters/ValidateModelAttribute.cs.ejs | 2 +- .../src/Project/Web/Rest/Problems/ExceptionTranslator.cs.ejs | 2 +- .../Web/Rest/Problems/ProblemDetailsConfiguration.cs.ejs | 2 +- .../Project/Web/Rest/Problems/ValidationFailedException.cs.ejs | 2 +- .../src/Project/Web/Rest/Utilities/ActionResultUtil.cs.ejs | 2 +- .../dotnetcore/src/Project/Web/Rest/Utilities/HeaderUtil.cs.ejs | 2 +- .../src/Project/Web/Rest/Utilities/PaginationUtil.cs.ejs | 2 +- .../dotnetcore/src/Project/appsettings.Development.json.ejs | 2 +- .../dotnetcore/src/Project/appsettings.Production.json.ejs | 2 +- .../templates/dotnetcore/src/Project/appsettings.json.ejs | 2 +- .../test/Project.Test/Configuration/TestMvcStartup.cs.ejs | 2 +- .../test/Project.Test/Controllers/AccountResourceIntTest.cs.ejs | 2 +- .../Controllers/ProfileInfoControllerIntTest.cs.ejs | 2 +- .../Project.Test/Controllers/PublicUsersControllerTest.cs.ejs | 2 +- .../dotnetcore/test/Project.Test/Controllers/TestUtil.cs.ejs | 2 +- .../Project.Test/Controllers/UserJwtControllerIntTest.cs.ejs | 2 +- .../test/Project.Test/Controllers/UsersResourceIntTest.cs.ejs | 2 +- .../server/templates/dotnetcore/test/Project.Test/Fixme.cs.ejs | 2 +- .../dotnetcore/test/Project.Test/Project.Test.csproj.ejs | 2 +- .../test/Project.Test/Properties/launchSettings.json.ejs | 2 +- .../test/Project.Test/Setup/AppWebApplicationFactory.cs.ejs | 2 +- .../test/Project.Test/Setup/MockClaimsPrincipalProvider.cs.ejs | 2 +- .../test/Project.Test/Setup/MockHttpContextFactory.cs.ejs | 2 +- .../dotnetcore/test/Project.Test/Setup/TestStartup.cs.ejs | 2 +- .../dotnetcore/test/Project.Test/xunit.runner.json.ejs | 2 +- generators/utils.js | 2 +- 310 files changed, 310 insertions(+), 310 deletions(-) diff --git a/LICENSE b/LICENSE index a8d3d9c36..a106c5c57 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ - Copyright 2019-2022 the original author or authors from the JHipster project + Copyright 2019-2023 the original author or authors from the JHipster project Apache License Version 2.0, January 2004 diff --git a/NOTICE b/NOTICE index 026729a49..57b7b98ad 100644 --- a/NOTICE +++ b/NOTICE @@ -1,4 +1,4 @@ JHipster -Copyright 2019-2022 the original author or authors from the JHipster project. +Copyright 2019-2023 the original author or authors from the JHipster project. For more information on the JHipster project, see https://www.jhipster.tech/ diff --git a/generators/app/prompts.js b/generators/app/prompts.js index 9a55efd76..616a2e36f 100644 --- a/generators/app/prompts.js +++ b/generators/app/prompts.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/client/files-angular.js b/generators/client/files-angular.js index b74baeeac..f91aaa0a4 100644 --- a/generators/client/files-angular.js +++ b/generators/client/files-angular.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/client/files-blazor.js b/generators/client/files-blazor.js index 925562d60..f2bf7d71e 100644 --- a/generators/client/files-blazor.js +++ b/generators/client/files-blazor.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/client/files-common.js b/generators/client/files-common.js index c3094ab90..cc209163a 100644 --- a/generators/client/files-common.js +++ b/generators/client/files-common.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/client/files-react.js b/generators/client/files-react.js index f902e215e..c82ab088d 100644 --- a/generators/client/files-react.js +++ b/generators/client/files-react.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/client/files-vue.js b/generators/client/files-vue.js index 2b05beafe..1f6b3d9e4 100644 --- a/generators/client/files-vue.js +++ b/generators/client/files-vue.js @@ -1,5 +1,5 @@ /** - * Copyright 2013-2022 the original author or authors from the JHipster project. + * Copyright 2013-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/client/files-xamarin.js b/generators/client/files-xamarin.js index 1beaf7edf..1f33fcccd 100644 --- a/generators/client/files-xamarin.js +++ b/generators/client/files-xamarin.js @@ -1,5 +1,5 @@ /** - * Copyright 2013-2022 the original author or authors from the JHipster project. + * Copyright 2013-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/client/index.js b/generators/client/index.js index 358349e97..b26a57fb2 100644 --- a/generators/client/index.js +++ b/generators/client/index.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/client/needle-api/needle-client-blazor.js b/generators/client/needle-api/needle-client-blazor.js index 7ff3c642c..e74e3d7e4 100644 --- a/generators/client/needle-api/needle-client-blazor.js +++ b/generators/client/needle-api/needle-client-blazor.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/client/needle-api/needle-client-xamarin.js b/generators/client/needle-api/needle-client-xamarin.js index ee900fce8..49af8a1fc 100644 --- a/generators/client/needle-api/needle-client-xamarin.js +++ b/generators/client/needle-api/needle-client-xamarin.js @@ -1,5 +1,5 @@ /** - * Copyright 2013-2022 the original author or authors from the JHipster project. + * Copyright 2013-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/client/prompts.js b/generators/client/prompts.js index 9ec743614..c05dc088f 100644 --- a/generators/client/prompts.js +++ b/generators/client/prompts.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/client/templates/blazor/src/Project.Client.Shared/Constants/ErrorConst.cs.ejs b/generators/client/templates/blazor/src/Project.Client.Shared/Constants/ErrorConst.cs.ejs index 3da4d42cd..f11e63205 100644 --- a/generators/client/templates/blazor/src/Project.Client.Shared/Constants/ErrorConst.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client.Shared/Constants/ErrorConst.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client.Shared/Constants/TypeAlert.cs.ejs b/generators/client/templates/blazor/src/Project.Client.Shared/Constants/TypeAlert.cs.ejs index a154d2ec1..261e1e0f7 100644 --- a/generators/client/templates/blazor/src/Project.Client.Shared/Constants/TypeAlert.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client.Shared/Constants/TypeAlert.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client.Shared/Models/JhiAlert.cs.ejs b/generators/client/templates/blazor/src/Project.Client.Shared/Models/JhiAlert.cs.ejs index 15095ede9..376532e49 100644 --- a/generators/client/templates/blazor/src/Project.Client.Shared/Models/JhiAlert.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client.Shared/Models/JhiAlert.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/App.razor.cs.ejs b/generators/client/templates/blazor/src/Project.Client/App.razor.cs.ejs index 15d89b782..f0b8b2bbf 100644 --- a/generators/client/templates/blazor/src/Project.Client/App.razor.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/App.razor.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/AutoMapper/AutoMapperProfile.cs.ejs b/generators/client/templates/blazor/src/Project.Client/AutoMapper/AutoMapperProfile.cs.ejs index 6ebd727a3..037f5c54b 100644 --- a/generators/client/templates/blazor/src/Project.Client/AutoMapper/AutoMapperProfile.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/AutoMapper/AutoMapperProfile.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/client/templates/blazor/src/Project.Client/Models/BaseModel.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Models/BaseModel.cs.ejs index 434461e27..2fca3a985 100644 --- a/generators/client/templates/blazor/src/Project.Client/Models/BaseModel.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Models/BaseModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Models/ConfigurationModel.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Models/ConfigurationModel.cs.ejs index f9973fb57..58dc70e1c 100644 --- a/generators/client/templates/blazor/src/Project.Client/Models/ConfigurationModel.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Models/ConfigurationModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Models/JwtToken.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Models/JwtToken.cs.ejs index b9e21bc89..f8a606133 100644 --- a/generators/client/templates/blazor/src/Project.Client/Models/JwtToken.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Models/JwtToken.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Models/LoginModel.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Models/LoginModel.cs.ejs index 419a5dd96..bc11c46aa 100644 --- a/generators/client/templates/blazor/src/Project.Client/Models/LoginModel.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Models/LoginModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Models/Register/RegisterModel.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Models/Register/RegisterModel.cs.ejs index d6cc4aaad..bd52ea846 100644 --- a/generators/client/templates/blazor/src/Project.Client/Models/Register/RegisterModel.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Models/Register/RegisterModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Models/Register/RegisterResultRequest.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Models/Register/RegisterResultRequest.cs.ejs index 4687b6509..360716205 100644 --- a/generators/client/templates/blazor/src/Project.Client/Models/Register/RegisterResultRequest.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Models/Register/RegisterResultRequest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Models/Register/UserSaveModel.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Models/Register/UserSaveModel.cs.ejs index 83bd44a3a..b6aadd06d 100644 --- a/generators/client/templates/blazor/src/Project.Client/Models/Register/UserSaveModel.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Models/Register/UserSaveModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Models/UserModel.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Models/UserModel.cs.ejs index 05fe9807d..417fde2c3 100644 --- a/generators/client/templates/blazor/src/Project.Client/Models/UserModel.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Models/UserModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Pages/Account/Register.razor.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Pages/Account/Register.razor.cs.ejs index 6efa244be..4c98a4539 100644 --- a/generators/client/templates/blazor/src/Project.Client/Pages/Account/Register.razor.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Pages/Account/Register.razor.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Pages/Admin/UserManagement/UserDetail.razor.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Pages/Admin/UserManagement/UserDetail.razor.cs.ejs index f56198a9c..c415b89db 100644 --- a/generators/client/templates/blazor/src/Project.Client/Pages/Admin/UserManagement/UserDetail.razor.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Pages/Admin/UserManagement/UserDetail.razor.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Pages/Admin/UserManagement/UserManagement.razor.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Pages/Admin/UserManagement/UserManagement.razor.cs.ejs index 6bd6da90b..e2b284378 100644 --- a/generators/client/templates/blazor/src/Project.Client/Pages/Admin/UserManagement/UserManagement.razor.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Pages/Admin/UserManagement/UserManagement.razor.cs.ejs @@ -1,6 +1,6 @@  <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Pages/Admin/UserManagement/UserUpdate.razor.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Pages/Admin/UserManagement/UserUpdate.razor.cs.ejs index 62d8d3166..11e9801b0 100644 --- a/generators/client/templates/blazor/src/Project.Client/Pages/Admin/UserManagement/UserUpdate.razor.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Pages/Admin/UserManagement/UserUpdate.razor.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Pages/Index.razor.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Pages/Index.razor.cs.ejs index 895e4c696..d61b6c8bc 100644 --- a/generators/client/templates/blazor/src/Project.Client/Pages/Index.razor.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Pages/Index.razor.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Pages/Login.razor.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Pages/Login.razor.cs.ejs index 61b360f35..96b242226 100644 --- a/generators/client/templates/blazor/src/Project.Client/Pages/Login.razor.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Pages/Login.razor.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Pages/Utils/INavigationService.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Pages/Utils/INavigationService.cs.ejs index c878b1044..5e0b49400 100644 --- a/generators/client/templates/blazor/src/Project.Client/Pages/Utils/INavigationService.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Pages/Utils/INavigationService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Pages/Utils/NavigationService.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Pages/Utils/NavigationService.cs.ejs index 92a370a8e..37dff7e97 100644 --- a/generators/client/templates/blazor/src/Project.Client/Pages/Utils/NavigationService.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Pages/Utils/NavigationService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Services/AccountServices/IRegisterService.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Services/AccountServices/IRegisterService.cs.ejs index b25a1f3ef..e5d65504a 100644 --- a/generators/client/templates/blazor/src/Project.Client/Services/AccountServices/IRegisterService.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Services/AccountServices/IRegisterService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Services/AccountServices/RegisterService.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Services/AccountServices/RegisterService.cs.ejs index c8317be17..fe606d7ed 100644 --- a/generators/client/templates/blazor/src/Project.Client/Services/AccountServices/RegisterService.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Services/AccountServices/RegisterService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Services/AuthenticationService.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Services/AuthenticationService.cs.ejs index 603a02b07..b29092f50 100644 --- a/generators/client/templates/blazor/src/Project.Client/Services/AuthenticationService.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Services/AuthenticationService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Services/EntityServices/AbstractEntityService.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Services/EntityServices/AbstractEntityService.cs.ejs index 0f316f6b9..c12e01c04 100644 --- a/generators/client/templates/blazor/src/Project.Client/Services/EntityServices/AbstractEntityService.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Services/EntityServices/AbstractEntityService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Services/EntityServices/User/IUserService.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Services/EntityServices/User/IUserService.cs.ejs index a4a3feb32..e25d18d32 100644 --- a/generators/client/templates/blazor/src/Project.Client/Services/EntityServices/User/IUserService.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Services/EntityServices/User/IUserService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Services/EntityServices/User/UserService.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Services/EntityServices/User/UserService.cs.ejs index fc8841b6c..023f7cb5d 100644 --- a/generators/client/templates/blazor/src/Project.Client/Services/EntityServices/User/UserService.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Services/EntityServices/User/UserService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Services/IAuthenticationService.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Services/IAuthenticationService.cs.ejs index cccad15e9..74c4c3887 100644 --- a/generators/client/templates/blazor/src/Project.Client/Services/IAuthenticationService.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Services/IAuthenticationService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Shared/Components/AlertError.razor.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Shared/Components/AlertError.razor.cs.ejs index 1856096ad..b09a80f66 100644 --- a/generators/client/templates/blazor/src/Project.Client/Shared/Components/AlertError.razor.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Shared/Components/AlertError.razor.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Shared/DeleteModal.razor.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Shared/DeleteModal.razor.cs.ejs index 1867ebc9a..1f2baa184 100644 --- a/generators/client/templates/blazor/src/Project.Client/Shared/DeleteModal.razor.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Shared/DeleteModal.razor.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/src/Project.Client/Shared/NavMenu.razor.cs.ejs b/generators/client/templates/blazor/src/Project.Client/Shared/NavMenu.razor.cs.ejs index 3f63a040b..2da34b4b2 100644 --- a/generators/client/templates/blazor/src/Project.Client/Shared/NavMenu.razor.cs.ejs +++ b/generators/client/templates/blazor/src/Project.Client/Shared/NavMenu.razor.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/test/Project.Client.Test/AlertErrorTest.cs.ejs b/generators/client/templates/blazor/test/Project.Client.Test/AlertErrorTest.cs.ejs index 37d6144ca..3c7d2b2c4 100644 --- a/generators/client/templates/blazor/test/Project.Client.Test/AlertErrorTest.cs.ejs +++ b/generators/client/templates/blazor/test/Project.Client.Test/AlertErrorTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/test/Project.Client.Test/Helpers/AuthorizationHelper.cs.ejs b/generators/client/templates/blazor/test/Project.Client.Test/Helpers/AuthorizationHelper.cs.ejs index 10275da00..2a9764526 100644 --- a/generators/client/templates/blazor/test/Project.Client.Test/Helpers/AuthorizationHelper.cs.ejs +++ b/generators/client/templates/blazor/test/Project.Client.Test/Helpers/AuthorizationHelper.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockAuthenticationService.cs.ejs b/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockAuthenticationService.cs.ejs index 6bbe46674..3c8535619 100644 --- a/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockAuthenticationService.cs.ejs +++ b/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockAuthenticationService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockAuthorizationPolicyProvider.cs.ejs b/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockAuthorizationPolicyProvider.cs.ejs index 29d093ee0..a06717da2 100644 --- a/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockAuthorizationPolicyProvider.cs.ejs +++ b/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockAuthorizationPolicyProvider.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockAuthorizationService.cs.ejs b/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockAuthorizationService.cs.ejs index e5a267f9c..acfbcbf48 100644 --- a/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockAuthorizationService.cs.ejs +++ b/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockAuthorizationService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockRegisterService.cs.ejs b/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockRegisterService.cs.ejs index b6e2d2ac0..4b71d0350 100644 --- a/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockRegisterService.cs.ejs +++ b/generators/client/templates/blazor/test/Project.Client.Test/Helpers/MockRegisterService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/test/Project.Client.Test/Helpers/TestPolicyRequirement.cs.ejs b/generators/client/templates/blazor/test/Project.Client.Test/Helpers/TestPolicyRequirement.cs.ejs index 8619b2f6e..067f82677 100644 --- a/generators/client/templates/blazor/test/Project.Client.Test/Helpers/TestPolicyRequirement.cs.ejs +++ b/generators/client/templates/blazor/test/Project.Client.Test/Helpers/TestPolicyRequirement.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/test/Project.Client.Test/IndexTest.cs.ejs b/generators/client/templates/blazor/test/Project.Client.Test/IndexTest.cs.ejs index d96b4cbe9..eaa429f97 100644 --- a/generators/client/templates/blazor/test/Project.Client.Test/IndexTest.cs.ejs +++ b/generators/client/templates/blazor/test/Project.Client.Test/IndexTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/test/Project.Client.Test/LoginTest.cs.ejs b/generators/client/templates/blazor/test/Project.Client.Test/LoginTest.cs.ejs index ec8912395..adb699eaa 100644 --- a/generators/client/templates/blazor/test/Project.Client.Test/LoginTest.cs.ejs +++ b/generators/client/templates/blazor/test/Project.Client.Test/LoginTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/test/Project.Client.Test/Pages/Admin/UserManagement/UserDetailTest.cs.ejs b/generators/client/templates/blazor/test/Project.Client.Test/Pages/Admin/UserManagement/UserDetailTest.cs.ejs index 7997583aa..90393a128 100644 --- a/generators/client/templates/blazor/test/Project.Client.Test/Pages/Admin/UserManagement/UserDetailTest.cs.ejs +++ b/generators/client/templates/blazor/test/Project.Client.Test/Pages/Admin/UserManagement/UserDetailTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/blazor/test/Project.Client.Test/RegisterTest.cs.ejs b/generators/client/templates/blazor/test/Project.Client.Test/RegisterTest.cs.ejs index 386c13901..84e207a5d 100644 --- a/generators/client/templates/blazor/test/Project.Client.Test/RegisterTest.cs.ejs +++ b/generators/client/templates/blazor/test/Project.Client.Test/RegisterTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Android/MainActivity.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Android/MainActivity.cs.ejs index 175c70a3a..05f924016 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Android/MainActivity.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Android/MainActivity.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Android/SplashScreenActivity.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Android/SplashScreenActivity.cs.ejs index 45fccc98f..87c81556c 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Android/SplashScreenActivity.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Android/SplashScreenActivity.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/App.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/App.cs.ejs index 02f4b855a..3c2362839 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/App.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/App.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/AssemblyInfo.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/AssemblyInfo.cs.ejs index 24235519b..c5ae73c13 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/AssemblyInfo.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/AssemblyInfo.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/FormsApp.xaml.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/FormsApp.xaml.cs.ejs index 1195f6162..b0c6ab588 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/FormsApp.xaml.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/FormsApp.xaml.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/LinkerPreserve.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/LinkerPreserve.cs.ejs index 990a48bde..d24044538 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/LinkerPreserve.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/LinkerPreserve.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/JwtToken.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/JwtToken.cs.ejs index 43619f7f2..15d5fdbcd 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/JwtToken.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/JwtToken.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/LoginModel.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/LoginModel.cs.ejs index 16a2a323f..f14ee5a2c 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/LoginModel.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/LoginModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/RegisterResultRequest.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/RegisterResultRequest.cs.ejs index d3d1ca7c2..c994ff0b5 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/RegisterResultRequest.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/RegisterResultRequest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/UserModel.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/UserModel.cs.ejs index e4e853639..50471a4b0 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/UserModel.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/UserModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/UserSaveModel.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/UserSaveModel.cs.ejs index 4df0a26f7..53b0ba90e 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/UserSaveModel.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Models/UserSaveModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Resources/Strings.Designer.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Resources/Strings.Designer.cs.ejs index dc3d8f80e..8eda3df90 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Resources/Strings.Designer.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Resources/Strings.Designer.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/AbstractEntityService.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/AbstractEntityService.cs.ejs index 8bad238a0..4d12c9b45 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/AbstractEntityService.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/AbstractEntityService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/AuthenticationService.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/AuthenticationService.cs.ejs index 28e4506ad..7935b61c8 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/AuthenticationService.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/AuthenticationService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/Configuration.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/Configuration.cs.ejs index 222c6093f..a8edfd6f1 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/Configuration.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/Configuration.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/IAbstractEntityService.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/IAbstractEntityService.cs.ejs index 96a9b1646..93172e490 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/IAbstractEntityService.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/IAbstractEntityService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/IAuthenticationService.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/IAuthenticationService.cs.ejs index 13e1c5bb7..ae7cf29ed 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/IAuthenticationService.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/IAuthenticationService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/IRegisterService.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/IRegisterService.cs.ejs index 43271bb6c..0f571be21 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/IRegisterService.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/IRegisterService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/RegisterService.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/RegisterService.cs.ejs index c223ede34..9c6f2586c 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/RegisterService.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Services/RegisterService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/BaseViewModel.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/BaseViewModel.cs.ejs index 64af18d58..cdf04e847 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/BaseViewModel.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/BaseViewModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/HomeViewModel.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/HomeViewModel.cs.ejs index 5a749c26d..ff6c08206 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/HomeViewModel.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/HomeViewModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/LoginViewModel.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/LoginViewModel.cs.ejs index e6316b817..3ef4b8815 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/LoginViewModel.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/LoginViewModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/MenuViewModel.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/MenuViewModel.cs.ejs index 7e2b16803..879415590 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/MenuViewModel.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/MenuViewModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/RegisterViewModel.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/RegisterViewModel.cs.ejs index 631221026..2a74cb7b8 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/RegisterViewModel.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/RegisterViewModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/WelcomeViewModel.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/WelcomeViewModel.cs.ejs index 39881a2ca..25d33d137 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/WelcomeViewModel.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/ViewModels/WelcomeViewModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/HomeView.xaml.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/HomeView.xaml.cs.ejs index 124764df1..85c2b073c 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/HomeView.xaml.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/HomeView.xaml.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/LoginView.xaml.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/LoginView.xaml.cs.ejs index 18cff67db..f5c832236 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/LoginView.xaml.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/LoginView.xaml.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/MenuPage.xaml.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/MenuPage.xaml.cs.ejs index f61cb4dd9..db6460448 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/MenuPage.xaml.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/MenuPage.xaml.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/RegisterView.xaml.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/RegisterView.xaml.cs.ejs index bece161bc..201b9dd61 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/RegisterView.xaml.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/RegisterView.xaml.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/WelcomeView.xaml.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/WelcomeView.xaml.cs.ejs index 889bc4eec..417e63559 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/WelcomeView.xaml.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Core/Views/WelcomeView.xaml.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Shared/Constants/ErrorConst.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Shared/Constants/ErrorConst.cs.ejs index def4f0a55..ee6d1c995 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.Shared/Constants/ErrorConst.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.Shared/Constants/ErrorConst.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/client/templates/xamarin/src/Project.Client.Xamarin.iOS/Main.cs.ejs b/generators/client/templates/xamarin/src/Project.Client.Xamarin.iOS/Main.cs.ejs index 10d859871..6bf6ccb5c 100644 --- a/generators/client/templates/xamarin/src/Project.Client.Xamarin.iOS/Main.cs.ejs +++ b/generators/client/templates/xamarin/src/Project.Client.Xamarin.iOS/Main.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/common/files.js b/generators/common/files.js index 750d00d61..9e5a4f3b2 100644 --- a/generators/common/files.js +++ b/generators/common/files.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/common/index.js b/generators/common/index.js index 93d22780b..3cc668c9c 100644 --- a/generators/common/index.js +++ b/generators/common/index.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/common/templates/dotnetcore/Dockerfile-Back.ejs b/generators/common/templates/dotnetcore/Dockerfile-Back.ejs index 064a29fbe..e83a9d45f 100644 --- a/generators/common/templates/dotnetcore/Dockerfile-Back.ejs +++ b/generators/common/templates/dotnetcore/Dockerfile-Back.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/common/templates/dotnetcore/README.md.ejs b/generators/common/templates/dotnetcore/README.md.ejs index ce9e9c1a4..e7bdd54a3 100644 --- a/generators/common/templates/dotnetcore/README.md.ejs +++ b/generators/common/templates/dotnetcore/README.md.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/common/templates/dotnetcore/docker-entrypoint-back.sh.ejs b/generators/common/templates/dotnetcore/docker-entrypoint-back.sh.ejs index 1423e621c..c91118c37 100644 --- a/generators/common/templates/dotnetcore/docker-entrypoint-back.sh.ejs +++ b/generators/common/templates/dotnetcore/docker-entrypoint-back.sh.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/common/templates/dotnetcore/docker-entrypoint-front.sh.ejs b/generators/common/templates/dotnetcore/docker-entrypoint-front.sh.ejs index b5145854f..cc3443f52 100644 --- a/generators/common/templates/dotnetcore/docker-entrypoint-front.sh.ejs +++ b/generators/common/templates/dotnetcore/docker-entrypoint-front.sh.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/dotnet.js b/generators/dotnet.js index 931ec8281..d86e27c62 100644 --- a/generators/dotnet.js +++ b/generators/dotnet.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/entities-client/index.js b/generators/entities-client/index.js index e70c25703..cc5078456 100644 --- a/generators/entities-client/index.js +++ b/generators/entities-client/index.js @@ -1,5 +1,5 @@ /** - * Copyright 2013-2022 the original author or authors from the JHipster project. + * Copyright 2013-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/entity-client/files-blazor.js b/generators/entity-client/files-blazor.js index e7af87adb..bb2d9ba60 100644 --- a/generators/entity-client/files-blazor.js +++ b/generators/entity-client/files-blazor.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/entity-client/files-xamarin.js b/generators/entity-client/files-xamarin.js index 06983d334..c28b57b01 100644 --- a/generators/entity-client/files-xamarin.js +++ b/generators/entity-client/files-xamarin.js @@ -1,5 +1,5 @@ /** - * Copyright 2013-2022 the original author or authors from the JHipster project. + * Copyright 2013-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/entity-client/templates/blazor/src/Project.Client/Models/Model.cs.ejs b/generators/entity-client/templates/blazor/src/Project.Client/Models/Model.cs.ejs index e507ae5b2..f730aa616 100644 --- a/generators/entity-client/templates/blazor/src/Project.Client/Models/Model.cs.ejs +++ b/generators/entity-client/templates/blazor/src/Project.Client/Models/Model.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/blazor/src/Project.Client/Pages/Entities/Entity/Entity.razor.cs.ejs b/generators/entity-client/templates/blazor/src/Project.Client/Pages/Entities/Entity/Entity.razor.cs.ejs index 869e6ea21..28c4bebd5 100644 --- a/generators/entity-client/templates/blazor/src/Project.Client/Pages/Entities/Entity/Entity.razor.cs.ejs +++ b/generators/entity-client/templates/blazor/src/Project.Client/Pages/Entities/Entity/Entity.razor.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/blazor/src/Project.Client/Pages/Entities/Entity/EntityDetail.razor.cs.ejs b/generators/entity-client/templates/blazor/src/Project.Client/Pages/Entities/Entity/EntityDetail.razor.cs.ejs index 330db99c1..7b5475691 100644 --- a/generators/entity-client/templates/blazor/src/Project.Client/Pages/Entities/Entity/EntityDetail.razor.cs.ejs +++ b/generators/entity-client/templates/blazor/src/Project.Client/Pages/Entities/Entity/EntityDetail.razor.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/blazor/src/Project.Client/Pages/Entities/Entity/EntityUpdate.razor.cs.ejs b/generators/entity-client/templates/blazor/src/Project.Client/Pages/Entities/Entity/EntityUpdate.razor.cs.ejs index 6a33116db..8b92f4c37 100644 --- a/generators/entity-client/templates/blazor/src/Project.Client/Pages/Entities/Entity/EntityUpdate.razor.cs.ejs +++ b/generators/entity-client/templates/blazor/src/Project.Client/Pages/Entities/Entity/EntityUpdate.razor.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/blazor/src/Project.Client/Services/EntityServices/EntityService/EntityService.cs.ejs b/generators/entity-client/templates/blazor/src/Project.Client/Services/EntityServices/EntityService/EntityService.cs.ejs index 409018554..09ad4dd8b 100644 --- a/generators/entity-client/templates/blazor/src/Project.Client/Services/EntityServices/EntityService/EntityService.cs.ejs +++ b/generators/entity-client/templates/blazor/src/Project.Client/Services/EntityServices/EntityService/EntityService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/blazor/src/Project.Client/Services/EntityServices/EntityService/IEntityService.cs.ejs b/generators/entity-client/templates/blazor/src/Project.Client/Services/EntityServices/EntityService/IEntityService.cs.ejs index 7a4d891a5..1ea972176 100644 --- a/generators/entity-client/templates/blazor/src/Project.Client/Services/EntityServices/EntityService/IEntityService.cs.ejs +++ b/generators/entity-client/templates/blazor/src/Project.Client/Services/EntityServices/EntityService/IEntityService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/blazor/test/Project.Client.Test/Pages/Entities/Entity/EntityDetailTest.cs.ejs b/generators/entity-client/templates/blazor/test/Project.Client.Test/Pages/Entities/Entity/EntityDetailTest.cs.ejs index 1bfa683a9..1b1694ca3 100644 --- a/generators/entity-client/templates/blazor/test/Project.Client.Test/Pages/Entities/Entity/EntityDetailTest.cs.ejs +++ b/generators/entity-client/templates/blazor/test/Project.Client.Test/Pages/Entities/Entity/EntityDetailTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/blazor/test/Project.Client.Test/Pages/Entities/Entity/EntityTest.cs.ejs b/generators/entity-client/templates/blazor/test/Project.Client.Test/Pages/Entities/Entity/EntityTest.cs.ejs index 8ed934cd1..520afc5ec 100644 --- a/generators/entity-client/templates/blazor/test/Project.Client.Test/Pages/Entities/Entity/EntityTest.cs.ejs +++ b/generators/entity-client/templates/blazor/test/Project.Client.Test/Pages/Entities/Entity/EntityTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/blazor/test/Project.Client.Test/Pages/Entities/Entity/EntityUpdateTest.cs.ejs b/generators/entity-client/templates/blazor/test/Project.Client.Test/Pages/Entities/Entity/EntityUpdateTest.cs.ejs index 70411ed17..f9ee787eb 100644 --- a/generators/entity-client/templates/blazor/test/Project.Client.Test/Pages/Entities/Entity/EntityUpdateTest.cs.ejs +++ b/generators/entity-client/templates/blazor/test/Project.Client.Test/Pages/Entities/Entity/EntityUpdateTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/xamarin/src/Project.Client/Models/Model.cs.ejs b/generators/entity-client/templates/xamarin/src/Project.Client/Models/Model.cs.ejs index 16404f2a0..c67b1fd2a 100644 --- a/generators/entity-client/templates/xamarin/src/Project.Client/Models/Model.cs.ejs +++ b/generators/entity-client/templates/xamarin/src/Project.Client/Models/Model.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/xamarin/src/Project.Client/Services/EntityService.cs.ejs b/generators/entity-client/templates/xamarin/src/Project.Client/Services/EntityService.cs.ejs index cbbea3721..f0f6eee15 100644 --- a/generators/entity-client/templates/xamarin/src/Project.Client/Services/EntityService.cs.ejs +++ b/generators/entity-client/templates/xamarin/src/Project.Client/Services/EntityService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/xamarin/src/Project.Client/Services/IEntityService.cs.ejs b/generators/entity-client/templates/xamarin/src/Project.Client/Services/IEntityService.cs.ejs index eeb302916..fc58b320b 100644 --- a/generators/entity-client/templates/xamarin/src/Project.Client/Services/IEntityService.cs.ejs +++ b/generators/entity-client/templates/xamarin/src/Project.Client/Services/IEntityService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/xamarin/src/Project.Client/ViewModels/EntityViewModel.cs.ejs b/generators/entity-client/templates/xamarin/src/Project.Client/ViewModels/EntityViewModel.cs.ejs index 7833cdcec..38732de62 100644 --- a/generators/entity-client/templates/xamarin/src/Project.Client/ViewModels/EntityViewModel.cs.ejs +++ b/generators/entity-client/templates/xamarin/src/Project.Client/ViewModels/EntityViewModel.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-client/templates/xamarin/src/Project.Client/Views/EntityView.xaml.cs.ejs b/generators/entity-client/templates/xamarin/src/Project.Client/Views/EntityView.xaml.cs.ejs index 1d7453054..28aa3d5e8 100644 --- a/generators/entity-client/templates/xamarin/src/Project.Client/Views/EntityView.xaml.cs.ejs +++ b/generators/entity-client/templates/xamarin/src/Project.Client/Views/EntityView.xaml.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-i18n/index.js b/generators/entity-i18n/index.js index 44c4f8779..bc3b71782 100644 --- a/generators/entity-i18n/index.js +++ b/generators/entity-i18n/index.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/entity-server/files.js b/generators/entity-server/files.js index 9dba12bea..9d236eb0d 100644 --- a/generators/entity-server/files.js +++ b/generators/entity-server/files.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityCreateCommand.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityCreateCommand.cs.ejs index 97c95b94e..ce0c6bcbf 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityCreateCommand.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityCreateCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityCreateCommandHandler.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityCreateCommandHandler.cs.ejs index fda7b83a6..94c1d231d 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityCreateCommandHandler.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityCreateCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityDeleteCommand.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityDeleteCommand.cs.ejs index 32a925ed3..f96fc5b73 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityDeleteCommand.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityDeleteCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityDeleteCommandHandler.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityDeleteCommandHandler.cs.ejs index df7877101..77cbd6b64 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityDeleteCommandHandler.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityDeleteCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityUpdateCommand.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityUpdateCommand.cs.ejs index 69a615bad..ab9e64c0f 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityUpdateCommand.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityUpdateCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityUpdateCommandHandler.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityUpdateCommandHandler.cs.ejs index 4852f0894..dfe5ba618 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityUpdateCommandHandler.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Application/Commands/EntityUpdateCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetAllQuery.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetAllQuery.cs.ejs index 3eb936542..0b85d384c 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetAllQuery.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetAllQuery.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetAllQueryHandler.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetAllQueryHandler.cs.ejs index f922205c8..f5e5817b6 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetAllQueryHandler.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetAllQueryHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetQuery.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetQuery.cs.ejs index d20732bdc..a0af8cae9 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetQuery.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetQuery.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetQueryHandler.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetQueryHandler.cs.ejs index 7ce9a2591..f9c4f27c7 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetQueryHandler.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Application/Queries/EntityGetQueryHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Crosscutting/Enums/Enum.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Crosscutting/Enums/Enum.cs.ejs index 0b9138fd1..0271f88ad 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Crosscutting/Enums/Enum.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Crosscutting/Enums/Enum.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Domain.Services/Service.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Domain.Services/Service.cs.ejs index a70cb0b51..c3d60350c 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Domain.Services/Service.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Domain.Services/Service.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Domain/Entities/Entity.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Domain/Entities/Entity.cs.ejs index 7ea83db11..41d93d9e2 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Domain/Entities/Entity.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Domain/Entities/Entity.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IEntityRepository.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IEntityRepository.cs.ejs index 7861469c4..702ccb6f2 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IEntityRepository.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IEntityRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IReadOnlyEntityRepository.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IReadOnlyEntityRepository.cs.ejs index 6047437a1..cc3f4d3db 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IReadOnlyEntityRepository.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IReadOnlyEntityRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IService.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IService.cs.ejs index 6b6ad3017..ae36c0065 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IService.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Dto/AuditedEntityBaseDto.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Dto/AuditedEntityBaseDto.cs.ejs index 24e99250e..c00505e4d 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Dto/AuditedEntityBaseDto.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Dto/AuditedEntityBaseDto.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Dto/Dto.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Dto/Dto.cs.ejs index 91a3bfe2d..1d7e75a7d 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Dto/Dto.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Dto/Dto.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Infrastructure/Data/ApplicationDatabaseContext.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Infrastructure/Data/ApplicationDatabaseContext.cs.ejs index e81d2a5b6..987989148 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Infrastructure/Data/ApplicationDatabaseContext.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Infrastructure/Data/ApplicationDatabaseContext.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/EntityRepository.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/EntityRepository.cs.ejs index 58ebc8d99..51bee7679 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/EntityRepository.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/EntityRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/ReadOnlyEntityRepository.cs.ejs b/generators/entity-server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/ReadOnlyEntityRepository.cs.ejs index 56aad7ccb..30ef48bcc 100644 --- a/generators/entity-server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/ReadOnlyEntityRepository.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/ReadOnlyEntityRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity-server/templates/dotnetcore/test/Project.Test/Controllers/EntityControllerIntTest.cs.ejs b/generators/entity-server/templates/dotnetcore/test/Project.Test/Controllers/EntityControllerIntTest.cs.ejs index c453c7364..bed787f86 100644 --- a/generators/entity-server/templates/dotnetcore/test/Project.Test/Controllers/EntityControllerIntTest.cs.ejs +++ b/generators/entity-server/templates/dotnetcore/test/Project.Test/Controllers/EntityControllerIntTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/entity/prompts.js b/generators/entity/prompts.js index 3af9cc76c..a0df9fb06 100644 --- a/generators/entity/prompts.js +++ b/generators/entity/prompts.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/generator-dotnetcore-constants.mjs b/generators/generator-dotnetcore-constants.mjs index 261791d0f..e6efa35b4 100644 --- a/generators/generator-dotnetcore-constants.mjs +++ b/generators/generator-dotnetcore-constants.mjs @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/heroku/build.js b/generators/heroku/build.js index 482d08f99..3ca5c1f1c 100644 --- a/generators/heroku/build.js +++ b/generators/heroku/build.js @@ -1,5 +1,5 @@ /** - * Copyright 2013-2022 the original author or authors from the JHipster project. + * Copyright 2013-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/heroku/deploy.js b/generators/heroku/deploy.js index 7f9a9201c..44c097598 100644 --- a/generators/heroku/deploy.js +++ b/generators/heroku/deploy.js @@ -1,5 +1,5 @@ /** - * Copyright 2013-2022 the original author or authors from the JHipster project. + * Copyright 2013-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/heroku/index.js b/generators/heroku/index.js index 675283f9c..517c2d662 100644 --- a/generators/heroku/index.js +++ b/generators/heroku/index.js @@ -1,5 +1,5 @@ /** - * Copyright 2013-2022 the original author or authors from the JHipster project. + * Copyright 2013-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/heroku/prompts.js b/generators/heroku/prompts.js index a5bf37edb..ac77d5435 100644 --- a/generators/heroku/prompts.js +++ b/generators/heroku/prompts.js @@ -1,5 +1,5 @@ /** - * Copyright 2013-2022 the original author or authors from the JHipster project. + * Copyright 2013-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/heroku/provision.js b/generators/heroku/provision.js index 762e3b46e..35439fb40 100644 --- a/generators/heroku/provision.js +++ b/generators/heroku/provision.js @@ -1,5 +1,5 @@ /** - * Copyright 2013-2022 the original author or authors from the JHipster project. + * Copyright 2013-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/heroku/templates/heroku.yml.ejs b/generators/heroku/templates/heroku.yml.ejs index cccb45d70..7e0c1fcdf 100644 --- a/generators/heroku/templates/heroku.yml.ejs +++ b/generators/heroku/templates/heroku.yml.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2013-2022 the original author or authors from the JHipster project. + Copyright 2013-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/languages/files-languages.js b/generators/languages/files-languages.js index 888fdd145..d9c5d8170 100644 --- a/generators/languages/files-languages.js +++ b/generators/languages/files-languages.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/server/files.js b/generators/server/files.js index 25fe63eec..961ebab9e 100644 --- a/generators/server/files.js +++ b/generators/server/files.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/server/index.js b/generators/server/index.js index 421aba892..643121c14 100644 --- a/generators/server/index.js +++ b/generators/server/index.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/server/needle-api/needle-server-gateway.js b/generators/server/needle-api/needle-server-gateway.js index e237889f6..c4430f716 100644 --- a/generators/server/needle-api/needle-server-gateway.js +++ b/generators/server/needle-api/needle-server-gateway.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/server/prompts.js b/generators/server/prompts.js index 0ef254034..c60b44cde 100644 --- a/generators/server/prompts.js +++ b/generators/server/prompts.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. diff --git a/generators/server/templates/dotnetcore/docker/app.yml.ejs b/generators/server/templates/dotnetcore/docker/app.yml.ejs index 418e308f8..e7f955c5d 100644 --- a/generators/server/templates/dotnetcore/docker/app.yml.ejs +++ b/generators/server/templates/dotnetcore/docker/app.yml.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/docker/consul.yml.ejs b/generators/server/templates/dotnetcore/docker/consul.yml.ejs index e00e3c804..897d96e53 100644 --- a/generators/server/templates/dotnetcore/docker/consul.yml.ejs +++ b/generators/server/templates/dotnetcore/docker/consul.yml.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/docker/keycloak.yml.ejs b/generators/server/templates/dotnetcore/docker/keycloak.yml.ejs index 31fb6a172..06f643daa 100644 --- a/generators/server/templates/dotnetcore/docker/keycloak.yml.ejs +++ b/generators/server/templates/dotnetcore/docker/keycloak.yml.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/docker/monitoring.yml.ejs b/generators/server/templates/dotnetcore/docker/monitoring.yml.ejs index 9a010a3cf..83d69af07 100644 --- a/generators/server/templates/dotnetcore/docker/monitoring.yml.ejs +++ b/generators/server/templates/dotnetcore/docker/monitoring.yml.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/docker/sonar.yml.ejs b/generators/server/templates/dotnetcore/docker/sonar.yml.ejs index c43f902bb..b56639477 100644 --- a/generators/server/templates/dotnetcore/docker/sonar.yml.ejs +++ b/generators/server/templates/dotnetcore/docker/sonar.yml.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Application/ApplicationClassesAssemblyHelper.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/ApplicationClassesAssemblyHelper.cs.ejs index 656011993..971b67bef 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/ApplicationClassesAssemblyHelper.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/ApplicationClassesAssemblyHelper.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountActivateCommand.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountActivateCommand.cs.ejs index 489d6f74f..6edb58f2e 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountActivateCommand.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountActivateCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountActivateCommandHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountActivateCommandHandler.cs.ejs index 84a975c9b..21d475ae3 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountActivateCommandHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountActivateCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountChangePasswordCommand.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountChangePasswordCommand.cs.ejs index e8e53f230..9902d4ab1 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountChangePasswordCommand.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountChangePasswordCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountChangePasswordCommandHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountChangePasswordCommandHandler.cs.ejs index 32e908f3a..c206a396c 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountChangePasswordCommandHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountChangePasswordCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountCreateCommand.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountCreateCommand.cs.ejs index 34a2bad49..978159da5 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountCreateCommand.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountCreateCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountCreateCommandHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountCreateCommandHandler.cs.ejs index fd3ee4781..d0cfd38a3 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountCreateCommandHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountCreateCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordCommand.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordCommand.cs.ejs index cfc41ea02..c2e3e5787 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordCommand.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordCommandHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordCommandHandler.cs.ejs index 983835e26..ef7f4c7c8 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordCommandHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordFinishCommand.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordFinishCommand.cs.ejs index 65d98dd26..727be295c 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordFinishCommand.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordFinishCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordFinishCommandHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordFinishCommandHandler.cs.ejs index fcb0c4ed8..2b8659e40 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordFinishCommandHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountResetPasswordFinishCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountSaveCommand.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountSaveCommand.cs.ejs index 6c7cad2fe..51c663d0f 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountSaveCommand.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountSaveCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountSaveCommandHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountSaveCommandHandler.cs.ejs index ca898a5bd..da1e75040 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountSaveCommandHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/Account/AccountSaveCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserCreateCommand.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserCreateCommand.cs.ejs index 281c0aee5..9cd0e2ab5 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserCreateCommand.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserCreateCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserCreateCommandHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserCreateCommandHandler.cs.ejs index ec867bf89..83d40762e 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserCreateCommandHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserCreateCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserDeleteCommand.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserDeleteCommand.cs.ejs index abd240565..b5b6f3364 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserDeleteCommand.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserDeleteCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserDeleteCommandHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserDeleteCommandHandler.cs.ejs index 6bef72d5a..02fa2acb9 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserDeleteCommandHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserDeleteCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserUpdateCommand.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserUpdateCommand.cs.ejs index 427741931..57bc66289 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserUpdateCommand.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserUpdateCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserUpdateCommandHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserUpdateCommandHandler.cs.ejs index a01e5b41b..16ffca66f 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserUpdateCommandHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/User/UserUpdateCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/UserJwt/UserJwtAuthorizeCommand.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/UserJwt/UserJwtAuthorizeCommand.cs.ejs index 7181b178e..db1cc1efe 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/UserJwt/UserJwtAuthorizeCommand.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/UserJwt/UserJwtAuthorizeCommand.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Commands/UserJwt/UserJwtAuthorizeCommandHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Commands/UserJwt/UserJwtAuthorizeCommandHandler.cs.ejs index f6c1185c4..b892a713b 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Commands/UserJwt/UserJwtAuthorizeCommandHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Commands/UserJwt/UserJwtAuthorizeCommandHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Project.csproj.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Project.csproj.ejs index 98c3d52be..9247383fa 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Project.csproj.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Project.csproj.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetAuthenticatedQuery.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetAuthenticatedQuery.cs.ejs index e0aae73c7..633e3ae4f 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetAuthenticatedQuery.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetAuthenticatedQuery.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetAuthenticatedQueryHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetAuthenticatedQueryHandler.cs.ejs index c74a3b807..b4fd5acc2 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetAuthenticatedQueryHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetAuthenticatedQueryHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetQuery.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetQuery.cs.ejs index 6703aa48d..c08b1e4bd 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetQuery.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetQuery.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetQueryHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetQueryHandler.cs.ejs index 6e71aad94..adc663624 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetQueryHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Queries/Account/AccountGetQueryHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllPublicUsersQuery.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllPublicUsersQuery.cs.ejs index 8783a9482..49296b93d 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllPublicUsersQuery.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllPublicUsersQuery.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllPublicUsersQueryHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllPublicUsersQueryHandler.cs.ejs index 08578faab..664f5c7df 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllPublicUsersQueryHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllPublicUsersQueryHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllQuery.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllQuery.cs.ejs index a10d9ba76..40fd7d329 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllQuery.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllQuery.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllQueryHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllQueryHandler.cs.ejs index 152be178b..6742480f0 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllQueryHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAllQueryHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAuthoritiesQuery.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAuthoritiesQuery.cs.ejs index bd94ad901..87fa186df 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAuthoritiesQuery.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAuthoritiesQuery.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAuthoritiesQueryHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAuthoritiesQueryHandler.cs.ejs index 8c4811c40..02eb6d6d2 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAuthoritiesQueryHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetAuthoritiesQueryHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetQuery.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetQuery.cs.ejs index 17e33e83e..958004c0a 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetQuery.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetQuery.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetQueryHandler.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetQueryHandler.cs.ejs index bb9269ffa..81cd83d46 100644 --- a/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetQueryHandler.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Application/Queries/User/UserGetQueryHandler.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/Constants.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/Constants.cs.ejs index e5c0d00ae..b1ddecb97 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/Constants.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/Constants.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/ErrorConstants.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/ErrorConstants.cs.ejs index 4277fc3ea..52056594d 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/ErrorConstants.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/ErrorConstants.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/JwtConstants.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/JwtConstants.cs.ejs index 6a6628501..82b68dfc0 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/JwtConstants.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/JwtConstants.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/RolesConstants.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/RolesConstants.cs.ejs index ea65b94d1..a196aeae7 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/RolesConstants.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Constants/RolesConstants.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/BadRequestAlertException.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/BadRequestAlertException.cs.ejs index cca3bc933..df4debfae 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/BadRequestAlertException.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/BadRequestAlertException.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/BaseException.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/BaseException.cs.ejs index 5e5544c46..72823c7e1 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/BaseException.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/BaseException.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/EmailAlreadyUsedException.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/EmailAlreadyUsedException.cs.ejs index 3d88e91ba..558da77e9 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/EmailAlreadyUsedException.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/EmailAlreadyUsedException.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/EmailNotFoundException.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/EmailNotFoundException.cs.ejs index 3ea7144a5..0b7501c18 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/EmailNotFoundException.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/EmailNotFoundException.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/InternalServerErrorException.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/InternalServerErrorException.cs.ejs index 1180112b0..1bcf84832 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/InternalServerErrorException.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/InternalServerErrorException.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/InvalidPasswordException.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/InvalidPasswordException.cs.ejs index 762680b7b..742ca8f9e 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/InvalidPasswordException.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/InvalidPasswordException.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/LoginAlreadyUsedException.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/LoginAlreadyUsedException.cs.ejs index 17932b25a..e48ce41a7 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/LoginAlreadyUsedException.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Exceptions/LoginAlreadyUsedException.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Project.csproj.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Project.csproj.ejs index 4c61b6d2b..07afd1ca0 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Project.csproj.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Project.csproj.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Utilities/RandomUtil.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Utilities/RandomUtil.cs.ejs index 9c62f46f8..83b087429 100644 --- a/generators/server/templates/dotnetcore/src/Project.Crosscutting/Utilities/RandomUtil.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Crosscutting/Utilities/RandomUtil.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain.Services/AuthenticationService.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain.Services/AuthenticationService.cs.ejs index 456560113..804af3915 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain.Services/AuthenticationService.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain.Services/AuthenticationService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain.Services/MailService.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain.Services/MailService.cs.ejs index 9f63ee3fd..8895df864 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain.Services/MailService.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain.Services/MailService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain.Services/Project.csproj.ejs b/generators/server/templates/dotnetcore/src/Project.Domain.Services/Project.csproj.ejs index 7c6fc799a..e7055b1db 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain.Services/Project.csproj.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain.Services/Project.csproj.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain.Services/ServicesClassesAssemblyHelper.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain.Services/ServicesClassesAssemblyHelper.cs.ejs index fdc5154f1..f785a9d90 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain.Services/ServicesClassesAssemblyHelper.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain.Services/ServicesClassesAssemblyHelper.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Domain.Services/UserService.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain.Services/UserService.cs.ejs index 051d95ccc..8298ead0a 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain.Services/UserService.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain.Services/UserService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/AuditedEntityBase.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/AuditedEntityBase.cs.ejs index 663a06eea..561ba349c 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/AuditedEntityBase.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/AuditedEntityBase.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/BaseEntity.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/BaseEntity.cs.ejs index e5966a925..3e026f393 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/BaseEntity.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/BaseEntity.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/Interfaces/IAuditedEntityBase.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/Interfaces/IAuditedEntityBase.cs.ejs index 883a1f911..b8a8d84f2 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/Interfaces/IAuditedEntityBase.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/Interfaces/IAuditedEntityBase.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/MongoBaseEntity.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/MongoBaseEntity.cs.ejs index 2a45ffde2..1ef27c488 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/MongoBaseEntity.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/MongoBaseEntity.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/Role.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/Role.cs.ejs index 5cd1267d5..e38201062 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/Role.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/Role.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/User.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/User.cs.ejs index 5d41c5c22..d9a8090d9 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/User.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/User.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/UserRole.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/UserRole.cs.ejs index 7226e1d1d..7a54d9fef 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Entities/UserRole.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Entities/UserRole.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Project.csproj.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Project.csproj.ejs index ff8430c73..e08700d6f 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Project.csproj.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Project.csproj.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IFluentRepository.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IFluentRepository.cs.ejs index 1244358fc..2ca38616d 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IFluentRepository.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IFluentRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IGenericRepository.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IGenericRepository.cs.ejs index 27dd452c5..54c7e4e44 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IGenericRepository.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IGenericRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/INoSqlFluentRepository.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/INoSqlFluentRepository.cs.ejs index 2a69cad7b..f3376f0c4 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/INoSqlFluentRepository.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/INoSqlFluentRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/INoSqlGenericRepository.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/INoSqlGenericRepository.cs.ejs index 19f38d9dd..5d343d4f1 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/INoSqlGenericRepository.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/INoSqlGenericRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/INoSqlReadOnlyGenericRepository.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/INoSqlReadOnlyGenericRepository.cs.ejs index 6ff4c0d7e..b8aa24f2a 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/INoSqlReadOnlyGenericRepository.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/INoSqlReadOnlyGenericRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IReadOnlyGenericRepository.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IReadOnlyGenericRepository.cs.ejs index 7b244842d..17463f022 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IReadOnlyGenericRepository.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IReadOnlyGenericRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IUnitOfWork.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IUnitOfWork.cs.ejs index ffa892a22..ca9644ff2 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IUnitOfWork.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Repositories/Interfaces/IUnitOfWork.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IAuthenticationService.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IAuthenticationService.cs.ejs index e75234eed..a1df638fb 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IAuthenticationService.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IAuthenticationService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IMailService.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IMailService.cs.ejs index 977d48185..8d520a2de 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IMailService.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IMailService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IUserService.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IUserService.cs.ejs index 8f36b0bc0..2b5ac95cd 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IUserService.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/IUserService.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/ServicesInterfacesAssemblyHelper.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/ServicesInterfacesAssemblyHelper.cs.ejs index 0bd8c89be..3673eb8c6 100644 --- a/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/ServicesInterfacesAssemblyHelper.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Domain/Services/Interfaces/ServicesInterfacesAssemblyHelper.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Dto/KeyAndPasswordDto.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Dto/KeyAndPasswordDto.cs.ejs index 3d287a7a0..563c54014 100644 --- a/generators/server/templates/dotnetcore/src/Project.Dto/KeyAndPasswordDto.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Dto/KeyAndPasswordDto.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Dto/LoginDto.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Dto/LoginDto.cs.ejs index adae26c5d..ae3f1f637 100644 --- a/generators/server/templates/dotnetcore/src/Project.Dto/LoginDto.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Dto/LoginDto.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Dto/ManagedUserDto.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Dto/ManagedUserDto.cs.ejs index 65f8a12a0..b43255ac3 100644 --- a/generators/server/templates/dotnetcore/src/Project.Dto/ManagedUserDto.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Dto/ManagedUserDto.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Dto/PasswordChangeDto.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Dto/PasswordChangeDto.cs.ejs index c40406f55..44fa3692a 100644 --- a/generators/server/templates/dotnetcore/src/Project.Dto/PasswordChangeDto.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Dto/PasswordChangeDto.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Dto/ProfileInfoDto.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Dto/ProfileInfoDto.cs.ejs index 1eac6ac79..f6cdd725a 100644 --- a/generators/server/templates/dotnetcore/src/Project.Dto/ProfileInfoDto.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Dto/ProfileInfoDto.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Dto/Project.csproj.ejs b/generators/server/templates/dotnetcore/src/Project.Dto/Project.csproj.ejs index 378a57e3c..6f1dd51c9 100644 --- a/generators/server/templates/dotnetcore/src/Project.Dto/Project.csproj.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Dto/Project.csproj.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Dto/UserDto.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Dto/UserDto.cs.ejs index 5b05599bb..f61d5e4b5 100644 --- a/generators/server/templates/dotnetcore/src/Project.Dto/UserDto.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Dto/UserDto.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Configuration/IMongoDatabaseConfig.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Configuration/IMongoDatabaseConfig.cs.ejs index d8327b351..eae9e131b 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Configuration/IMongoDatabaseConfig.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Configuration/IMongoDatabaseConfig.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Configuration/MongoDatabaseConfig.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Configuration/MongoDatabaseConfig.cs.ejs index 5c0c83414..884173646 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Configuration/MongoDatabaseConfig.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Configuration/MongoDatabaseConfig.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Configuration/SecuritySettings.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Configuration/SecuritySettings.cs.ejs index 15d138734..899a90974 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Configuration/SecuritySettings.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Configuration/SecuritySettings.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/ApplicationDatabaseContext.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/ApplicationDatabaseContext.cs.ejs index 934de1516..5144f2565 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/ApplicationDatabaseContext.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/ApplicationDatabaseContext.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Extensions/DbSetExtensions.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Extensions/DbSetExtensions.cs.ejs index 4d483bfb9..7f4a854e7 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Extensions/DbSetExtensions.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Extensions/DbSetExtensions.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Extensions/NoSqlPagination.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Extensions/NoSqlPagination.cs.ejs index bc10324eb..fef0c2264 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Extensions/NoSqlPagination.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Extensions/NoSqlPagination.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Extensions/PropertyAccessorCache.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Extensions/PropertyAccessorCache.cs.ejs index 1a031d9b3..0153efe57 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Extensions/PropertyAccessorCache.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Extensions/PropertyAccessorCache.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/IMongoDatabaseContext.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/IMongoDatabaseContext.cs.ejs index 0f4155979..db61c9658 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/IMongoDatabaseContext.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/IMongoDatabaseContext.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/MongoDatabaseContext.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/MongoDatabaseContext.cs.ejs index 99073f560..dff340b8c 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/MongoDatabaseContext.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/MongoDatabaseContext.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/FluentRepository.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/FluentRepository.cs.ejs index 033a00bcb..cd6a31174 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/FluentRepository.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/FluentRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/GenericRepository.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/GenericRepository.cs.ejs index c82595fed..7ac0865b9 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/GenericRepository.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/GenericRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoDatabaseUserStore.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoDatabaseUserStore.cs.ejs index cf32feb5e..2c08aa9ec 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoDatabaseUserStore.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoDatabaseUserStore.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoFluentRepository.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoFluentRepository.cs.ejs index 8641b2a77..1db05d89a 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoFluentRepository.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoFluentRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoGenericRepository.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoGenericRepository.cs.ejs index 9212fb30a..6ad01ad8e 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoGenericRepository.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoGenericRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoReadOnlyGenericRepository.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoReadOnlyGenericRepository.cs.ejs index 031f2b57b..fb5ac0745 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoReadOnlyGenericRepository.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/MongoReadOnlyGenericRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/NoSqlPagination.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/NoSqlPagination.cs.ejs index aea473c4c..47c289fd5 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/NoSqlPagination.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/NoSqlPagination.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/ReadOnlyGenericRepository.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/ReadOnlyGenericRepository.cs.ejs index b981cab0b..4614ee5f4 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/ReadOnlyGenericRepository.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/ReadOnlyGenericRepository.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/UnitOfWork.cs.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/UnitOfWork.cs.ejs index cb4f238af..6ae60fb30 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/UnitOfWork.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Data/Repositories/UnitOfWork.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Project.csproj.ejs b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Project.csproj.ejs index c3bcc27ec..57ccb2270 100644 --- a/generators/server/templates/dotnetcore/src/Project.Infrastructure/Project.csproj.ejs +++ b/generators/server/templates/dotnetcore/src/Project.Infrastructure/Project.csproj.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/AppSettingsStartup.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/AppSettingsStartup.cs.ejs index 4f098f244..86bae5942 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/AppSettingsStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/AppSettingsStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/AutoMapper/AutoMapperProfile.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/AutoMapper/AutoMapperProfile.cs.ejs index d6e3b382a..cae8f684c 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/AutoMapper/AutoMapperProfile.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/AutoMapper/AutoMapperProfile.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/AutoMapperStartup.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/AutoMapperStartup.cs.ejs index 9d68ca551..b870773cb 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/AutoMapperStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/AutoMapperStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/ConfigurationHelper.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/ConfigurationHelper.cs.ejs index 4350c28bc..50d64c5a3 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/ConfigurationHelper.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/ConfigurationHelper.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/Consul/ConsulOptions.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/Consul/ConsulOptions.cs.ejs index d1f680389..6149c0354 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/Consul/ConsulOptions.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/Consul/ConsulOptions.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/Consul/ConsulStartup.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/Consul/ConsulStartup.cs.ejs index 5dae06e33..a8eaba726 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/Consul/ConsulStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/Consul/ConsulStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/DatabaseStartup.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/DatabaseStartup.cs.ejs index 2d12362bb..40e6500b1 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/DatabaseStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/DatabaseStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/IMongoDatabaseConfig.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/IMongoDatabaseConfig.cs.ejs index b3d258b0a..65a541764 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/IMongoDatabaseConfig.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/IMongoDatabaseConfig.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/IdentityStartup.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/IdentityStartup.cs.ejs index f5ad71dc5..fd8f3ad01 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/IdentityStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/IdentityStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/MongoDatabaseConfig.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/MongoDatabaseConfig.cs.ejs index 1c3c2319e..8b2c56184 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/MongoDatabaseConfig.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/MongoDatabaseConfig.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/MvcStartup.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/MvcStartup.cs.ejs index bbc01c08c..33be29eef 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/MvcStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/MvcStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/ProblemDetailsStartup.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/ProblemDetailsStartup.cs.ejs index 0f480eacb..16b1da9e3 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/ProblemDetailsStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/ProblemDetailsStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/RepositoryStartup.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/RepositoryStartup.cs.ejs index e00ad904a..07a3a6efe 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/RepositoryStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/RepositoryStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/SecurityStartup.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/SecurityStartup.cs.ejs index d47fc02cc..de2a18915 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/SecurityStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/SecurityStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/ServiceStartup.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/ServiceStartup.cs.ejs index 743b0f612..77b777c0c 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/ServiceStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/ServiceStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. diff --git a/generators/server/templates/dotnetcore/src/Project/Configuration/SwaggerStartup.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Configuration/SwaggerStartup.cs.ejs index 7cb965931..8e5bfd16d 100644 --- a/generators/server/templates/dotnetcore/src/Project/Configuration/SwaggerStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Configuration/SwaggerStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Controllers/AccountController.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Controllers/AccountController.cs.ejs index 40eee4dd7..cbda28681 100644 --- a/generators/server/templates/dotnetcore/src/Project/Controllers/AccountController.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Controllers/AccountController.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Controllers/ProfileInfoController.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Controllers/ProfileInfoController.cs.ejs index b7a3ccb5f..4e67acb99 100644 --- a/generators/server/templates/dotnetcore/src/Project/Controllers/ProfileInfoController.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Controllers/ProfileInfoController.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Controllers/PublicUsersController.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Controllers/PublicUsersController.cs.ejs index b38f1c950..55f1a32b7 100644 --- a/generators/server/templates/dotnetcore/src/Project/Controllers/PublicUsersController.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Controllers/PublicUsersController.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Controllers/UserJwtController.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Controllers/UserJwtController.cs.ejs index 2a47991e8..5289b2ae3 100644 --- a/generators/server/templates/dotnetcore/src/Project/Controllers/UserJwtController.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Controllers/UserJwtController.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Controllers/UsersController.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Controllers/UsersController.cs.ejs index 0d6c22fda..73e60e945 100644 --- a/generators/server/templates/dotnetcore/src/Project/Controllers/UsersController.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Controllers/UsersController.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Program.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Program.cs.ejs index 065483a6e..eb102144e 100644 --- a/generators/server/templates/dotnetcore/src/Project/Program.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Program.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Project.csproj.ejs b/generators/server/templates/dotnetcore/src/Project/Project.csproj.ejs index d370e5ef4..2013eaa99 100644 --- a/generators/server/templates/dotnetcore/src/Project/Project.csproj.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Project.csproj.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Properties/launchSettings.json.ejs b/generators/server/templates/dotnetcore/src/Project/Properties/launchSettings.json.ejs index 8623e5518..8823f9dea 100644 --- a/generators/server/templates/dotnetcore/src/Project/Properties/launchSettings.json.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Properties/launchSettings.json.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Security/BCryptPasswordHasher.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Security/BCryptPasswordHasher.cs.ejs index 5a878cec0..2317c5fdb 100644 --- a/generators/server/templates/dotnetcore/src/Project/Security/BCryptPasswordHasher.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Security/BCryptPasswordHasher.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Security/Jwt/RoleClaimsTransformation.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Security/Jwt/RoleClaimsTransformation.cs.ejs index 3f5bde2ea..6e1e1a7de 100644 --- a/generators/server/templates/dotnetcore/src/Project/Security/Jwt/RoleClaimsTransformation.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Security/Jwt/RoleClaimsTransformation.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Security/Jwt/TokenProvider.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Security/Jwt/TokenProvider.cs.ejs index d3502238c..44e2ac8f2 100644 --- a/generators/server/templates/dotnetcore/src/Project/Security/Jwt/TokenProvider.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Security/Jwt/TokenProvider.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Security/PoliciesConstants.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Security/PoliciesConstants.cs.ejs index 282c4e8c7..b8f85aa57 100644 --- a/generators/server/templates/dotnetcore/src/Project/Security/PoliciesConstants.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Security/PoliciesConstants.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Security/UserNotActivatedException.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Security/UserNotActivatedException.cs.ejs index 77a47e118..9b5033fdf 100644 --- a/generators/server/templates/dotnetcore/src/Project/Security/UserNotActivatedException.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Security/UserNotActivatedException.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Security/UsernameNotFoundException.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Security/UsernameNotFoundException.cs.ejs index ffc24a474..b53959a7a 100644 --- a/generators/server/templates/dotnetcore/src/Project/Security/UsernameNotFoundException.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Security/UsernameNotFoundException.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Startup.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Startup.cs.ejs index ffabf0aa1..7388bd796 100644 --- a/generators/server/templates/dotnetcore/src/Project/Startup.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Startup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Web/Extensions/ActionResultExtensions.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Web/Extensions/ActionResultExtensions.cs.ejs index 30f4923bd..0525cd965 100644 --- a/generators/server/templates/dotnetcore/src/Project/Web/Extensions/ActionResultExtensions.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Web/Extensions/ActionResultExtensions.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Web/Extensions/ActionResultWithHeaders.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Web/Extensions/ActionResultWithHeaders.cs.ejs index ac10c0ece..951492077 100644 --- a/generators/server/templates/dotnetcore/src/Project/Web/Extensions/ActionResultWithHeaders.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Web/Extensions/ActionResultWithHeaders.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Web/Extensions/HttpRequestExtensions.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Web/Extensions/HttpRequestExtensions.cs.ejs index b71e06177..8ea698712 100644 --- a/generators/server/templates/dotnetcore/src/Project/Web/Extensions/HttpRequestExtensions.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Web/Extensions/HttpRequestExtensions.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Web/Filters/ValidateModelAttribute.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Web/Filters/ValidateModelAttribute.cs.ejs index ddc0049b8..bf132b13b 100644 --- a/generators/server/templates/dotnetcore/src/Project/Web/Filters/ValidateModelAttribute.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Web/Filters/ValidateModelAttribute.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Web/Rest/Problems/ExceptionTranslator.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Web/Rest/Problems/ExceptionTranslator.cs.ejs index ecf64f928..cb2de137d 100644 --- a/generators/server/templates/dotnetcore/src/Project/Web/Rest/Problems/ExceptionTranslator.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Web/Rest/Problems/ExceptionTranslator.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Web/Rest/Problems/ProblemDetailsConfiguration.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Web/Rest/Problems/ProblemDetailsConfiguration.cs.ejs index 35f128eda..62329bfa6 100644 --- a/generators/server/templates/dotnetcore/src/Project/Web/Rest/Problems/ProblemDetailsConfiguration.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Web/Rest/Problems/ProblemDetailsConfiguration.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Web/Rest/Problems/ValidationFailedException.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Web/Rest/Problems/ValidationFailedException.cs.ejs index cd6af6c10..a603f422e 100644 --- a/generators/server/templates/dotnetcore/src/Project/Web/Rest/Problems/ValidationFailedException.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Web/Rest/Problems/ValidationFailedException.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Web/Rest/Utilities/ActionResultUtil.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Web/Rest/Utilities/ActionResultUtil.cs.ejs index 3bc50c886..fcc87eb9c 100644 --- a/generators/server/templates/dotnetcore/src/Project/Web/Rest/Utilities/ActionResultUtil.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Web/Rest/Utilities/ActionResultUtil.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Web/Rest/Utilities/HeaderUtil.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Web/Rest/Utilities/HeaderUtil.cs.ejs index 3d980e785..1c134e2f5 100644 --- a/generators/server/templates/dotnetcore/src/Project/Web/Rest/Utilities/HeaderUtil.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Web/Rest/Utilities/HeaderUtil.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/Web/Rest/Utilities/PaginationUtil.cs.ejs b/generators/server/templates/dotnetcore/src/Project/Web/Rest/Utilities/PaginationUtil.cs.ejs index d2578d0de..a03c2ba4c 100644 --- a/generators/server/templates/dotnetcore/src/Project/Web/Rest/Utilities/PaginationUtil.cs.ejs +++ b/generators/server/templates/dotnetcore/src/Project/Web/Rest/Utilities/PaginationUtil.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/appsettings.Development.json.ejs b/generators/server/templates/dotnetcore/src/Project/appsettings.Development.json.ejs index 2f5440867..e7dfd0c79 100644 --- a/generators/server/templates/dotnetcore/src/Project/appsettings.Development.json.ejs +++ b/generators/server/templates/dotnetcore/src/Project/appsettings.Development.json.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/appsettings.Production.json.ejs b/generators/server/templates/dotnetcore/src/Project/appsettings.Production.json.ejs index e1b2d4e6d..3dfa00b63 100644 --- a/generators/server/templates/dotnetcore/src/Project/appsettings.Production.json.ejs +++ b/generators/server/templates/dotnetcore/src/Project/appsettings.Production.json.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/src/Project/appsettings.json.ejs b/generators/server/templates/dotnetcore/src/Project/appsettings.json.ejs index a918bec64..74f18b221 100644 --- a/generators/server/templates/dotnetcore/src/Project/appsettings.json.ejs +++ b/generators/server/templates/dotnetcore/src/Project/appsettings.json.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Configuration/TestMvcStartup.cs.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Configuration/TestMvcStartup.cs.ejs index 553848b53..259c36ca5 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Configuration/TestMvcStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Configuration/TestMvcStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Controllers/AccountResourceIntTest.cs.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Controllers/AccountResourceIntTest.cs.ejs index 52b2229b8..6fb3e3f9c 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Controllers/AccountResourceIntTest.cs.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Controllers/AccountResourceIntTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Controllers/ProfileInfoControllerIntTest.cs.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Controllers/ProfileInfoControllerIntTest.cs.ejs index f965b434c..687a43759 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Controllers/ProfileInfoControllerIntTest.cs.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Controllers/ProfileInfoControllerIntTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Controllers/PublicUsersControllerTest.cs.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Controllers/PublicUsersControllerTest.cs.ejs index f4fff6c86..150f1cd7a 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Controllers/PublicUsersControllerTest.cs.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Controllers/PublicUsersControllerTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Controllers/TestUtil.cs.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Controllers/TestUtil.cs.ejs index 1c9b4001e..1e4cee13d 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Controllers/TestUtil.cs.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Controllers/TestUtil.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Controllers/UserJwtControllerIntTest.cs.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Controllers/UserJwtControllerIntTest.cs.ejs index eb745ed33..be1227f98 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Controllers/UserJwtControllerIntTest.cs.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Controllers/UserJwtControllerIntTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Controllers/UsersResourceIntTest.cs.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Controllers/UsersResourceIntTest.cs.ejs index a9e714636..89f12b925 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Controllers/UsersResourceIntTest.cs.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Controllers/UsersResourceIntTest.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Fixme.cs.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Fixme.cs.ejs index ec1d3bc4a..9c8941843 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Fixme.cs.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Fixme.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Project.Test.csproj.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Project.Test.csproj.ejs index 5e9852b25..65d387acf 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Project.Test.csproj.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Project.Test.csproj.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Properties/launchSettings.json.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Properties/launchSettings.json.ejs index 035178851..50192291c 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Properties/launchSettings.json.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Properties/launchSettings.json.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Setup/AppWebApplicationFactory.cs.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Setup/AppWebApplicationFactory.cs.ejs index 353127d6e..56900e777 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Setup/AppWebApplicationFactory.cs.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Setup/AppWebApplicationFactory.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Setup/MockClaimsPrincipalProvider.cs.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Setup/MockClaimsPrincipalProvider.cs.ejs index b4bc7855b..10a34932b 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Setup/MockClaimsPrincipalProvider.cs.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Setup/MockClaimsPrincipalProvider.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Setup/MockHttpContextFactory.cs.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Setup/MockHttpContextFactory.cs.ejs index 5f22a25d0..f54ca1c0b 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Setup/MockHttpContextFactory.cs.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Setup/MockHttpContextFactory.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/Setup/TestStartup.cs.ejs b/generators/server/templates/dotnetcore/test/Project.Test/Setup/TestStartup.cs.ejs index b43acaf6f..3e4174cd0 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/Setup/TestStartup.cs.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/Setup/TestStartup.cs.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/server/templates/dotnetcore/test/Project.Test/xunit.runner.json.ejs b/generators/server/templates/dotnetcore/test/Project.Test/xunit.runner.json.ejs index a402c688c..0ff01b4bf 100644 --- a/generators/server/templates/dotnetcore/test/Project.Test/xunit.runner.json.ejs +++ b/generators/server/templates/dotnetcore/test/Project.Test/xunit.runner.json.ejs @@ -1,5 +1,5 @@ <%# - Copyright 2019-2022 the original author or authors from the JHipster project. + Copyright 2019-2023 the original author or authors from the JHipster project. This file is part of the JHipster project, see https://www.jhipster.tech/ for more information. Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/generators/utils.js b/generators/utils.js index 224a45d23..39db75392 100644 --- a/generators/utils.js +++ b/generators/utils.js @@ -1,5 +1,5 @@ /** - * Copyright 2019-2022 the original author or authors from the JHipster project. + * Copyright 2019-2023 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information.