aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/dotnet/example_binary/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dotnet/example_binary/BUILD')
-rw-r--r--examples/dotnet/example_binary/BUILD12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/dotnet/example_binary/BUILD b/examples/dotnet/example_binary/BUILD
new file mode 100644
index 0000000000..04c126a31e
--- /dev/null
+++ b/examples/dotnet/example_binary/BUILD
@@ -0,0 +1,12 @@
+load("/tools/build_defs/dotnet/csharp", "csharp_binary")
+
+csharp_binary(
+ name = "hello",
+ srcs = [
+ "Program.cs",
+ "Properties/AssemblyInfo.cs",
+ ],
+ deps = [
+ "//examples/dotnet/example_lib:MyClass",
+ ],
+)