-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Normalize text files.
- Loading branch information
Showing
91 changed files
with
14,835 additions
and
14,821 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
bin/ | ||
obj/ | ||
|
||
*.cachefile | ||
*.suo | ||
*.user | ||
bin/ | ||
obj/ | ||
|
||
*.cachefile | ||
*.suo | ||
*.user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.