aboutsummaryrefslogtreecommitdiffstats
path: root/QtVsTools.Core/QtModule.cs
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright comments to 2025Ali Demiralp2025-03-181-4/+2
| | | | | Change-Id: I9ab1f8919a3d28cb546cd71bfdc8da1f6ae9e123 Reviewed-by: Karsten Heimrich <[email protected]>
* Change source license to LicenseRef-Qt-Commercial or GPL-3.0-onlyAli Can Demiralp2024-02-281-1/+1
| | | | | | | | ... WITH Qt-GPL-exception. Fixes: QTVSADDINBUG-1179 Change-Id: I74fe451eec352af13436548cfd9a28f832fc0757 Reviewed-by: Karsten Heimrich <[email protected]>
* Update license year from 2023 to 2024Ali Can Demiralp2024-01-091-1/+1
| | | | | Change-Id: I38700243f7ef55239b247945324e4e0a978b097f Reviewed-by: Miguel Costa <[email protected]>
* Remove Id field from QtModuleKarsten Heimrich2023-07-191-4/+1
| | | | | | | | | | It is not used anywhere, possibly due to the removal of the support for custom build steps. Makes adding new modules easier, as we can add them as needed instead of appending it at the end due to numbering. Change-Id: I8831163f1d59b80fc500359087febf3a210a09cf Reviewed-by: Miguel Costa <[email protected]>
* Remove redundant type specificationKarsten Heimrich2023-04-201-4/+4
| | | | | Change-Id: I2fd01ab44923e301f4a9ae87445e8aaa9485cc83 Reviewed-by: Miguel Costa <[email protected]>
* Replace license headerMiguel Costa2023-02-231-27/+4
| | | | | Change-Id: I6e7667d0f6f1245b5b225e74120d289bf595423d Reviewed-by: Karsten Heimrich <[email protected]>
* Remove unused codeKarsten Heimrich2023-02-231-34/+0
| | | | | Change-Id: Id7833ab7d60ba5dfae897b52755d7d2e4faaa479 Reviewed-by: Miguel Costa <[email protected]>
* Modernization: Update propertiesKarsten Heimrich2022-10-041-20/+8
| | | | | | | | | * Use expression body. * Use expression-bodied properties. * Convert to auto-property if applicable. Change-Id: I2342f1194aca941e2a7ca70186422bd7835f8eed Reviewed-by: Miguel Costa <[email protected]>
* Remove hard-coded Qt5 versioning schemaKarsten Heimrich2022-07-261-4/+6
| | | | | | | | Otherwise the import of Qt projects with a Qt6 default version will leave the Qt module link libraries untouched in the project. Change-Id: Icd2804289b01a25157ee9edf5dbd9f6fa48334cb Reviewed-by: Miguel Costa <[email protected]>
* Remove unused module 'HasDLL' propertyKarsten Heimrich2022-07-081-1/+0
| | | | | Change-Id: I0388783c6109f673afbf0bbc2c669a169323c27a Reviewed-by: Karsten Heimrich <[email protected]>
* Fix using directive is not requiredKarsten Heimrich2022-01-281-1/+0
| | | | | Change-Id: I8c0766b66b49206339d048f28d02caf9c10f7fb0 Reviewed-by: Miguel Costa <[email protected]>
* Fix "Finish" button always disabled in Qt Class WizardKarsten Heimrich2021-12-171-19/+0
| | | | | | | | | * Calm down som warnings in VS2022. * Make the wizard message more generic. Fixes: QTVSADDINBUG-930 Change-Id: I821706fb89a649079baa72edd7fd57a5273529fb Reviewed-by: Miguel Costa <[email protected]>
* Remove unnecessary loading and translation of Qt module namesKarsten Heimrich2021-12-151-1/+0
| | | | | | | | | Since we are in english only anyway, loading and translating Qt module names makes no sense. Especially while the package is loading. Completely remove the module name resource entries. Change-Id: I593e87ea534260d18e471fda012d186d7630a6be Reviewed-by: Miguel Costa <[email protected]>
* Rename ModuleId to Id where applicableKarsten Heimrich2021-12-071-2/+2
| | | | | Change-Id: Id3791d39b5e216bc2564499a6203029db245cf01 Reviewed-by: Miguel Costa <[email protected]>
* Rename QtModuleInfo to QtModule, following qtmodules.xml declarationKarsten Heimrich2021-12-071-0/+130
| | | | | Change-Id: I29eacbd177239ee57e7367290f95675483390273 Reviewed-by: Miguel Costa <[email protected]>
* Remove QtModule enumerationKarsten Heimrich2021-12-071-87/+0
| | | | | | | | The ID's are now calculated by reading it from the qtmodules.xml. Remove the global enumeration and use int directly instead. Change-Id: Ic8a083e5e9d115d86a0c905191da405ff3c2511c Reviewed-by: Miguel Costa <[email protected]>
* refactoring: Reorganize project filesMiguel Costa2021-11-161-0/+87
- Moved project files from the 'src' folder into the root 'vstools'. - Renamed some projects: * QtVsTools -> QtVsTools.Package * qtwizard -> QtVsTools.Wizards * Project template projects -> QtTemplate.Project.* * Item template projects -> QtTemplate.Item.* - Moved QtVsTools.Package source files to a sub-folder named 'Package'. NOTE: this change breaks the build; it should only be applied together with subsequent refactoring changes. Change-Id: Ib7b70c350d8e9f068a023b0250d6b490b17d1687 Reviewed-by: Karsten Heimrich <[email protected]>