-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve runtime info at startup. Use console instead of nlog for cras…
…h message. (#740) * Resolve runtime info at startup. Use console instead of nlog for crash message. * Cleanup usings.
- Loading branch information
1 parent
1975c15
commit 7ff6d1d
Showing
3 changed files
with
35 additions
and
18 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
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,16 @@ | ||
namespace Anvil | ||
{ | ||
public sealed partial class AnvilCore | ||
{ | ||
private static RuntimeInfo runtimeInfo; | ||
|
||
private struct RuntimeInfo | ||
{ | ||
public string? AssemblyName; | ||
public string? AssemblyVersion; | ||
public string? ServerVersion; | ||
public string? CoreVersion; | ||
public string? NativeVersion; | ||
} | ||
} | ||
} |
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