using MonoDevelop.Projects; ... ExecutionContext ctx = ExecutionContext.Default; Project project = ctx.GetActiveProject();
using MonoDevelop.Projects; ... ExecutionContext ctx = ExecutionContext.Default; string projectFilePath = ctx.GetFilePath();
using MonoDevelop.Projects; ... ExecutionContext ctx = ExecutionContext.Default; string buildConfigName = ctx.ConfigurationSelector.ActiveConfiguration.Name;This code gets the name of the active build configuration for the current project using the `ActiveConfiguration.Name` property. Overall, the MonoDevelop.Projects package library provides a set of useful features for working with projects in MonoDevelop, and the ExecutionContext class is an essential part of it.