From d00e3a1ef2c6678ffc24eb9ffbc6561ba85338c4 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Mon, 9 Nov 2015 18:44:26 +0000 Subject: Add dotnet csharp support to bazel. Adds rules for csharp_binary, csharp_library, and csharp_nunit_test. -- Change-Id: I51e448a399c535554353b3f40bf090bb602f647f Reviewed-on: https://bazel-review.googlesource.com/#/c/2270/ MOS_MIGRATED_REVID=107399181 --- examples/dotnet/example_binary/BUILD | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 examples/dotnet/example_binary/BUILD (limited to 'examples/dotnet/example_binary/BUILD') 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", + ], +) -- cgit v1.2.3