From bbddf51a5425799564e7c8ede4456feb59537357 Mon Sep 17 00:00:00 2001 From: Guillaume Poirier-Morency Date: Mon, 26 Jun 2017 19:52:04 -0400 Subject: [PATCH] Use 'C sharp' instead of 'C#' The '#' is reserved for Ninja comments and cannot be escaped. --- mesonbuild/compilers/cs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/compilers/cs.py b/mesonbuild/compilers/cs.py index 4f6fec12a..e6c5b9e49 100644 --- a/mesonbuild/compilers/cs.py +++ b/mesonbuild/compilers/cs.py @@ -26,7 +26,7 @@ class MonoCompiler(Compiler): self.monorunner = 'mono' def get_display_language(self): - return 'C#' + return 'C sharp' def get_output_args(self, fname): return ['-out:' + fname]