aboutsummaryrefslogtreecommitdiff
path: root/src/Constants/BuildConfig.cs
blob: 39758ea1bdbd255b0c9e37aca2c92836e793ed95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using System.Text.Json.Serialization;

using Semver;

using VNLib.Tools.Build.Executor.Model;

namespace VNLib.Tools.Build.Executor.Constants
{
    public sealed class BuildConfig
    {
        [JsonPropertyName("soure_file_extensions")]
        public string[] SourceFileEx { get; set; } = [
            "c",
            "cpp",
            "cxx",
            "h",
            "hpp",
            "cs",
            "proj",
            "sln",
            "ts",
            "js",
            "java",
            "json",
            "yaml",
            "yml",
        ];

        [JsonPropertyName("excluded_dirs")]
        public string[] ExcludedSourceDirs { get; set; } = [
            "bin",
            "obj",
            "packages",
            "node_modules",
            "dist",
            "build",
            "out",
            "target",
        ];

        [JsonPropertyName("default_sha_method")]
        public string HashFuncName { get; set; } = "sha256";

        [JsonPropertyName("head_file_name")]
        public string HeadFileName { get; set; } = "@latest";

        [JsonPropertyName("module_task_file_name")]
        public string ModuleTaskFileName { get; set; } = "Module.Taskfile.yaml";

        [JsonPropertyName("main_taskfile_name")]
        public string MainTaskFileName { get; set; } = "build.taskfile.yaml";

        [JsonPropertyName("output_file_type")]
        public string OutputFileType { get; set; } = "*.tgz";

        [JsonPropertyName("task_exe_name")]
        public string TaskExeName { get; set; } = "task";

        [JsonPropertyName("source_archive_name")]
        public string SourceArchiveName { get; set; } = "archive.tgz";

        [JsonPropertyName("source_archive_format")]
        public string SourceArchiveFormat { get; set; } = "tgz";

        [JsonPropertyName("project_bin_dir")]
        public string ProjectBinDir { get; set; } = "bin";

        [JsonPropertyName("default_ci_version")]
        public string DefaultCiVersion { get; set; } = "0.1.0";

        [JsonPropertyName("semver_style")]
        public SemVersionStyles SemverStyle { get; set; }

        [JsonIgnore]
        public IDirectoryIndex Index { get; set; } = default!;
    }
}