bool IncludeSourceFiles { get; set; }

robot_2Generated
code_blocksInput

Description

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.

Usage

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

// 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