Skip to content

Commit

Permalink
Add CefGitHash property - useful for determining which git commit the…
Browse files Browse the repository at this point in the history
… build is based on
  • Loading branch information
amaitland committed Jul 23, 2015
1 parent 0d8c939 commit 0379632
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions CefSharp.Core/Cef.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,18 @@ namespace CefSharp
}
}

/// <summary>
/// Gets a value that indicates the Git Hash for CEF version currently being used.
/// </summary>
/// <value>The Git Commit Hash</value>
static property String^ CefCommitHash
{
String^ get()
{
return CEF_COMMIT_HASH;
}
}

/// <summary>Initializes CefSharp with the default settings.</summary>
/// <return>true if successful; otherwise, false.</return>
static bool Initialize()
Expand Down

0 comments on commit 0379632

Please sign in to comment.