Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/Version.cs')
-rw-r--r--LibGit2Sharp/Version.cs20
1 files changed, 8 insertions, 12 deletions
diff --git a/LibGit2Sharp/Version.cs b/LibGit2Sharp/Version.cs
index fbc6ef89..4a155dcb 100644
--- a/LibGit2Sharp/Version.cs
+++ b/LibGit2Sharp/Version.cs
@@ -46,10 +46,7 @@ namespace LibGit2Sharp
/// <returns>A <see cref="BuiltInFeatures"/> enumeration.</returns>
public virtual BuiltInFeatures Features
{
- get
- {
- return Proxy.git_libgit2_features();
- }
+ get { return Proxy.git_libgit2_features(); }
}
/// <summary>
@@ -92,14 +89,13 @@ namespace LibGit2Sharp
{
string features = Features.ToString();
- return string.Format(
- CultureInfo.InvariantCulture,
- "{0}-{1}-{2} ({3} - {4})",
- InformationalVersion,
- LibGit2SharpCommitSha,
- LibGit2CommitSha,
- Platform.ProcessorArchitecture,
- features);
+ return string.Format(CultureInfo.InvariantCulture,
+ "{0}-{1}-{2} ({3} - {4})",
+ InformationalVersion,
+ LibGit2SharpCommitSha,
+ LibGit2CommitSha,
+ Platform.ProcessorArchitecture,
+ features);
}
private string ReadContentFromResource(Assembly assembly, string partialResourceName)