aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/dotnet/example_lib/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dotnet/example_lib/BUILD')
-rw-r--r--examples/dotnet/example_lib/BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/dotnet/example_lib/BUILD b/examples/dotnet/example_lib/BUILD
new file mode 100644
index 0000000000..0ec2cd7dab
--- /dev/null
+++ b/examples/dotnet/example_lib/BUILD
@@ -0,0 +1,13 @@
+load("/tools/build_defs/dotnet/csharp", "csharp_library")
+
+csharp_library(
+ name = "MyClass",
+ srcs = [
+ "MyClass.cs",
+ "Properties/AssemblyInfo.cs",
+ ],
+ visibility = ["//visibility:public"],
+ deps = [
+ "//examples/dotnet/example_transitive_lib:TransitiveClass",
+ ],
+)