The IncludeSourceFiles
property of the ProjectConfig
class determines whether all source files should be included in the project configuration. When set to true
, the source files are included; otherwise, they are not.
The IncludeSourceFiles
property of the ProjectConfig
class determines whether all source files should be included in the project configuration. When set to true
, the source files are included; otherwise, they are not.
To use the IncludeSourceFiles
property, you can access it directly from an instance of the ProjectConfig
class. This property is useful when you need to control the inclusion of source files in your project configuration.
// Example of setting the IncludeSourceFiles property var projectConfig = new ProjectConfig(); projectConfig.IncludeSourceFiles = true; // Check if source files are included bool areSourceFilesIncluded = projectConfig.IncludeSourceFiles; // Output: true