Updated docs

This commit is contained in:
2023-02-20 15:55:20 +01:00
parent 48d0daabf5
commit 9e28dce5ce
632 changed files with 10917 additions and 6775 deletions

View File

@@ -2,14 +2,13 @@ from enum import Enum
class BuildSettingsNameEnum(Enum):
project_type = 'ProjectType'
source_path = 'SourcePath'
output_path = 'OutputPath'
main = 'Main'
entry_point = 'EntryPoint'
include_package_data = 'IncludePackageData'
included = 'Included'
excluded = 'Excluded'
package_data = 'PackageData'
project_references = 'ProjectReferences'
project_type = "ProjectType"
source_path = "SourcePath"
output_path = "OutputPath"
main = "Main"
entry_point = "EntryPoint"
include_package_data = "IncludePackageData"
included = "Included"
excluded = "Excluded"
package_data = "PackageData"
project_references = "ProjectReferences"