The BuildAsync
method is responsible for asynchronously building the compilers within the CompileGroup
. This method returns a Task<bool>
indicating the success or failure of the build process.
The BuildAsync
method is responsible for asynchronously building the compilers within the CompileGroup
. This method returns a Task<bool>
indicating the success or failure of the build process.
To use the BuildAsync
method, you need to have an instance of the CompileGroup
class. Call the method without any parameters, and await its completion to determine if the build was successful.
// Example of using BuildAsync method public async Task<bool> BuildCompilersAsync() { CompileGroup compileGroup = new CompileGroup(); bool buildSuccess = await compileGroup.BuildAsync(); return buildSuccess; }