-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from KevM/strong-naming
Strong naming and Version 1.14 upgrade
- Loading branch information
Showing
9 changed files
with
1,306 additions
and
244 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 |
---|---|---|
|
@@ -13,3 +13,4 @@ build | |
SolutionInfo.cs | ||
.paket/paket.exe | ||
paket-files | ||
*.snk |
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
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
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
22 changes: 11 additions & 11 deletions
22
...Dotnet.TextExtractor/StringExtrensions.cs → ...nDotnet.TextExtractor/StringExtensions.cs
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,12 +1,12 @@ | ||
using System; | ||
|
||
namespace TikaOnDotNet.TextExtraction | ||
{ | ||
public static class StringExtrensions | ||
{ | ||
public static string ToFormat(this string formatMe, params object[] args) | ||
{ | ||
return String.Format(formatMe, args); | ||
} | ||
} | ||
using System; | ||
|
||
namespace TikaOnDotNet.TextExtraction | ||
{ | ||
public static class StringExtensions | ||
{ | ||
public static string ToFormat(this string formatMe, params object[] args) | ||
{ | ||
return String.Format(formatMe, args); | ||
} | ||
} | ||
} |
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