aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/dotnet/example_test/BUILD
blob: 41613cfb215a76148dcdb1d1cee1841208b5ced3 (plain)
1
2
3
4
5
6
7
8
9
10
11
load("//tools/build_defs/dotnet:csharp.bzl", "csharp_nunit_test")

csharp_nunit_test(
    name = "MyTest",
    srcs = [
        "MyTest.cs",
    ],
    deps = [
        "//examples/dotnet/example_lib:MyClass",
    ],
)