aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/dotnet/example_transitive_lib/BUILD
blob: b210b7ac53ee0afe47c823f117992081fe216d38 (plain)
1
2
3
4
5
6
7
8
9
10
load("//tools/build_defs/dotnet:csharp.bzl", "csharp_library")

csharp_library(
    name = "TransitiveClass",
    srcs = [
        "Properties/AssemblyInfo.cs",
        "TransitiveClass.cs",
    ],
    visibility = ["//visibility:public"],
)