Description
The SuppressBuildNotifications
property is a static boolean property of the CompileGroup
class. It is used to control whether build notifications are suppressed during the startup phase of the application. By default, build notifications are suppressed to prevent multiple notification windows from appearing during startup.
Usage
To use the SuppressBuildNotifications
property, you can directly access it since it is a static property. You can set it to true
to suppress build notifications or false
to allow them.
Example
// Suppress build notifications during startup
CompileGroup.SuppressBuildNotifications = true;
// Allow build notifications after startup
CompileGroup.SuppressBuildNotifications = false;