Removing byte order mark using sed -i '1 s/^\xef\xbb\xbf//' *.cs
Dev Ghai

Dev Ghai commited on 2013-09-23 06:42:21
Showing 10 changed files, with 10 additions and 10 deletions.

... ...
@@ -1,4 +1,4 @@
1
-<?xml version="1.0" encoding="utf-8"?>
1
+<?xml version="1.0" encoding="utf-8"?>
2 2
 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 3
   <PropertyGroup>
4 4
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
... ...
@@ -1,4 +1,4 @@
1
-<?xml version="1.0" encoding="utf-8"?>
1
+<?xml version="1.0" encoding="utf-8"?>
2 2
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 3
   <PropertyGroup>
4 4
     <ProjectView>ProjectFiles</ProjectView>
... ...
@@ -1,4 +1,4 @@
1
-using System;
1
+using System;
2 2
 using System.Text;
3 3
 
4 4
 namespace Boggle
... ...
@@ -1,4 +1,4 @@
1
-using System;
1
+using System;
2 2
 using System.Collections.Generic;
3 3
 using System.IO;
4 4
 
... ...
@@ -1,4 +1,4 @@
1
-using System;
1
+using System;
2 2
 using System.Collections.Generic;
3 3
 using System.Text;
4 4
 using System.Threading;
... ...
@@ -1,4 +1,4 @@
1
-namespace Boggle
1
+namespace Boggle
2 2
 {
3 3
     static class Constants
4 4
     {
... ...
@@ -1,4 +1,4 @@
1
-using System.Collections.Generic;
1
+using System.Collections.Generic;
2 2
 
3 3
 namespace Boggle
4 4
 {
... ...
@@ -1,4 +1,4 @@
1
-namespace Boggle
1
+namespace Boggle
2 2
 {
3 3
     public class Tile
4 4
     {
... ...
@@ -1,4 +1,4 @@
1
-using System.Collections.Generic;
1
+using System.Collections.Generic;
2 2
 
3 3
 namespace Boggle
4 4
 {
... ...
@@ -1,4 +1,4 @@
1
-
1
+
2 2
 namespace Boggle
3 3
 {
4 4
     public struct WordOnBoard
5 5