From ba18c4424910ba758d64c7d4997a7695fa94c783 Mon Sep 17 00:00:00 2001 From: barubary Date: Wed, 23 Mar 2011 09:53:25 +0000 Subject: [PATCH] C#: the project file is now for VS2010. Removed the unused using-statement for Linq to get .NET 2.0 compatibility again. --- CSharp/DSDecmp.sln | 4 ++-- CSharp/DSDecmp/DSDecmp.csproj | 8 ++++++-- CSharp/DSDecmp/Formats/Nitro/RLE.cs | 1 - 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CSharp/DSDecmp.sln b/CSharp/DSDecmp.sln index 26c30f5..80903ee 100644 --- a/CSharp/DSDecmp.sln +++ b/CSharp/DSDecmp.sln @@ -1,6 +1,6 @@  -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual C# Express 2010 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DSDecmp", "DSDecmp\DSDecmp.csproj", "{E6F419F9-D6B5-4BE7-99BB-97C48C927FF3}" EndProject Global diff --git a/CSharp/DSDecmp/DSDecmp.csproj b/CSharp/DSDecmp/DSDecmp.csproj index e7c8691..01866fc 100644 --- a/CSharp/DSDecmp/DSDecmp.csproj +++ b/CSharp/DSDecmp/DSDecmp.csproj @@ -1,4 +1,5 @@ - + + Debug AnyCPU @@ -13,7 +14,9 @@ - 2.0 + 3.5 + v2.0 + true @@ -46,6 +49,7 @@ + diff --git a/CSharp/DSDecmp/Formats/Nitro/RLE.cs b/CSharp/DSDecmp/Formats/Nitro/RLE.cs index 5b12401..e91ff38 100644 --- a/CSharp/DSDecmp/Formats/Nitro/RLE.cs +++ b/CSharp/DSDecmp/Formats/Nitro/RLE.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Linq; using System.Text; using System.IO;