// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
namespace Flax.Build
{
public static partial class Configuration
{
///
/// Package deployment output path.
///
[CommandLine("deployOutput", "Package deployment output path.")]
public static string DeployOutput;
///
/// Builds and packages the editor.
///
[CommandLine("deployEditor", "Builds and packages the editor.")]
public static bool DeployEditor;
///
/// Builds and packages the platforms data.
///
[CommandLine("deployPlatforms", "Builds and packages the platforms data.")]
public static bool DeployPlatforms;
///
/// Certificate file path for binaries signing.
///
[CommandLine("deployCert", "Certificate file path for binaries signing.")]
public static string DeployCert;
///
/// Certificate file password for binaries signing.
///
[CommandLine("deployCertPass", "Certificate file password for binaries signing.")]
public static string DeployCertPass;
}
}