Rename and fix dist errors
diff --git a/Makefile.am b/Makefile.am
index 05c2c5c..a915967 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,8 +1,4 @@
-## Process this file with automake to produce Makefile.in
-
-ACLOCAL_AMFLAGS = -I m4
-
-AUTOMAKE_OPTIONS = foreign
+## Process this file with automake to produce Makefile.in ACLOCAL_AMFLAGS = -I m4 AUTOMAKE_OPTIONS = foreign
 
 # Build . before src so that our all-local and clean-local hooks kicks in at
 # the right time.
@@ -62,6 +58,7 @@
   csharp/NuGet.Config                                                        \
   csharp/README.md                                                           \
   csharp/build_packages.bat                                                  \
+  csharp/build_release.sh                                                    \
   csharp/build_tools.sh                                                      \
   csharp/buildall.bat                                                        \
   csharp/buildall.sh                                                         \
diff --git a/csharp/BUILD.bazel b/csharp/BUILD.bazel
index 02a7aa8..4f35566 100644
--- a/csharp/BUILD.bazel
+++ b/csharp/BUILD.bazel
@@ -39,6 +39,7 @@
         "NuGet.Config",
         "README.md",
         "build_packages.bat",
+        "build_release.sh",
         "build_tools.sh",
         "buildall.bat",
         "buildall.sh",
@@ -53,7 +54,7 @@
 )
 
 sh_binary(
-  name = "csharp_release_build",
-  srcs = ["csharp_release_build.sh"],
-  args = ["$(location csharp_release_build.sh)"],
+  name = "release",
+  srcs = ["build_release.sh"],
+  args = ["$(location build_release.sh)"],
 )
diff --git a/csharp/csharp_release_build.sh b/csharp/build_release.sh
similarity index 100%
rename from csharp/csharp_release_build.sh
rename to csharp/build_release.sh