Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.59 KB

File metadata and controls

29 lines (20 loc) · 1.59 KB

IConfiguration interface

Global Studio Pro configuration that can depend on environment or user-defined settings.

public interface IConfiguration

Members

name description
BuildTag { get; } Tag uniquely identifying Studio Pro build.
CurrentLanguage { get; } The current language for the UI of Studio Pro.
EarliestSupportedLegacyMendixVersion { get; } Latest compatible version of Studio Pro in the semver v2 format major.minor.patch.
LatestSupportedLegacyMendixVersion { get; } Latest compatible version of Studio Pro in the semver v2 format major.minor.patch.
MendixVersion { get; } Version of Studio Pro in the semver v2 format major.minor.patch.
TargetServices { get; } Versions of global services Studio Pro instance should use.
Theme { get; } User interface theme currently in use.

Remarks

Configuration can be accessed in any extension from Configuration, or can be obtained by having IConfigurationService injected into your class.

See Also