Skip to content

Commit

Permalink
Add git attributes file.
Browse files Browse the repository at this point in the history
Normalize text files.
  • Loading branch information
gitfool committed Jun 18, 2013
1 parent 6d0c8e7 commit 27a5e3a
Show file tree
Hide file tree
Showing 91 changed files with 14,835 additions and 14,821 deletions.
14 changes: 14 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Auto detect text files and perform LF normalization
* text=auto

# Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union

# Virtu
*.do binary
*.dsk binary
*.nib binary
*.po binary
*.rom binary
12 changes: 6 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
bin/
obj/

*.cachefile
*.suo
*.user
bin/
obj/

*.cachefile
*.suo
*.user
34 changes: 17 additions & 17 deletions Library/AssemblyMetadataAttribute.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
using System;

namespace Jellyfish.Library
{
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true, Inherited = false)]
public sealed class AssemblyMetadataAttribute : Attribute
{
public AssemblyMetadataAttribute(string key, string value)
{
Key = key;
Value = value;
}

public string Key { get; private set; }
public string Value { get; private set; }
}
}
using System;

namespace Jellyfish.Library
{
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true, Inherited = false)]
public sealed class AssemblyMetadataAttribute : Attribute
{
public AssemblyMetadataAttribute(string key, string value)
{
Key = key;
Value = value;
}

public string Key { get; private set; }
public string Value { get; private set; }
}
}
18 changes: 9 additions & 9 deletions Library/CustomDictionary.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Dictionary>
<Words>
<Recognized>
<Word>x</Word>
<Word>y</Word>
</Recognized>
</Words>
</Dictionary>
<?xml version="1.0" encoding="utf-8"?>
<Dictionary>
<Words>
<Recognized>
<Word>x</Word>
<Word>y</Word>
</Recognized>
</Words>
</Dictionary>
Loading

0 comments on commit 27a5e3a

Please sign in to comment.