Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/dotnet/devtools/src/generator/BUILD.bazel
1864 views
load("//dotnet:defs.bzl", "csharp_binary", "framework")

csharp_binary(
    name = "generator",
    srcs = glob(["**/*.cs"]),
    nullable = "enable",
    # Used as a tool in our build, so just target one framework
    target_frameworks = ["net8.0"],
    visibility = [
        "//dotnet:__subpackages__",
    ],
    deps = [
        framework("nuget", "CommandLineParser"),
        framework("nuget", "Handlebars.Net"),
        framework("nuget", "Humanizer.Core"),
        framework("nuget", "Microsoft.Extensions.DependencyInjection"),
        framework("nuget", "Microsoft.Extensions.DependencyInjection.Abstractions"),
    ],
)