Enum 2504 Extension Deploy To in 25

App
System Application
Namespace
System.Apps

Values, 3

Versions171819202122232425262728latest

Source242526272829

Source in 25

src/System Application/App/Extension Management/src/ExtensionDeployTo.Enum.al38 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Apps;

/// <summary>
/// Specifies the version in which the extension is deployed.
/// </summary>
enum 2504 "Extension Deploy To"
{
    Extensible = false;
    AssignmentCompatibility = true;

    /// <summary>
    /// Current version.
    /// </summary>
    value(0; "Current version")
    {
        Caption = 'Current version';
    }

    /// <summary>
    /// Next minor version
    /// </summary>
    value(1; "Next minor version")
    {
        Caption = 'Next minor version';
    }
    /// <summary>
    /// Next major version
    /// </summary>
    value(2; "Next major version")
    {
        Caption = 'Next major version';
    }
}

Values, 3

IdNameObsolete
0Current version-
1Next minor version-
2Next major version-