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 --- .../dotnet/example_lib/Properties/AssemblyInfo.cs | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 examples/dotnet/example_lib/Properties/AssemblyInfo.cs (limited to 'examples/dotnet/example_lib/Properties/AssemblyInfo.cs') diff --git a/examples/dotnet/example_lib/Properties/AssemblyInfo.cs b/examples/dotnet/example_lib/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..1e8e2dd20e --- /dev/null +++ b/examples/dotnet/example_lib/Properties/AssemblyInfo.cs @@ -0,0 +1,27 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +// Information about this assembly is defined by the following attributes. +// Change them to the values specific to your project. + +[assembly: AssemblyTitle("example_lib")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". +// The form "{Major}.{Minor}.*" will automatically update the build and revision, +// and "{Major}.{Minor}.{Build}.*" will update just the revision. + +[assembly: AssemblyVersion("1.0.*")] + +// The following attributes are used to specify the signing key for the assembly, +// if desired. See the Mono documentation for more information about signing. + +//[assembly: AssemblyDelaySign(false)] +//[assembly: AssemblyKeyFile("")] + -- cgit v1.2.3