14 lines
462 B
C#
14 lines
462 B
C#
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
|
|
|
|
namespace Flax.Build
|
|
{
|
|
public static partial class Configuration
|
|
{
|
|
/// <summary>
|
|
/// The deps to build. Separated by ',' char. Empty if build all deps.
|
|
/// </summary>
|
|
[CommandLine("depsToBuild", "<package1,package2>", "The deps to build. Separated by ',' char. Empty if build all deps.")]
|
|
public static string DepsToBuild = string.Empty;
|
|
}
|
|
}
|