From 62e4bb82f63aea41c6439a90dee312bffec1e3e4 Mon Sep 17 00:00:00 2001 From: "Daniel G. Taylor" Date: Mon, 16 Jul 2012 09:35:39 -0700 Subject: [PATCH] Fix C# syntax highlighting, add highlighting for Visual Studio project files --- lib/GitList/Util/Repository.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/GitList/Util/Repository.php b/lib/GitList/Util/Repository.php index 317ce8c..dde5cbe 100644 --- a/lib/GitList/Util/Repository.php +++ b/lib/GitList/Util/Repository.php @@ -15,7 +15,7 @@ class Repository 'cpp' => 'clike', 'm' => 'clike', 'mm' => 'clike', - 'cs' => 'csharp', + 'cs' => 'text/x-csharp', 'java' => 'java', 'clj' => 'clojure', 'coffee' => 'coffeescript', @@ -88,6 +88,7 @@ class Repository 'gif' => 'image', 'jpeg' => 'image', 'bmp' => 'image', + 'csproj' => 'xml', ); public function __construct(Application $app)