mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-15 12:45:01 +00:00
Merge remote-tracking branch 'origin/fix/VC4_Fixes' into ConnectPro_v1.2
This commit is contained in:
@@ -48,11 +48,15 @@ namespace ICD.Common.Utils
|
|||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
Regex regex = new Regex(MODEL_NAME_REGEX);
|
string versionResult = VersionResult;
|
||||||
Match match = regex.Match(VersionResult);
|
if (!String.IsNullOrEmpty(versionResult))
|
||||||
|
{
|
||||||
|
Regex regex = new Regex(MODEL_NAME_REGEX);
|
||||||
|
Match match = regex.Match(versionResult);
|
||||||
|
|
||||||
if (match.Success)
|
if (match.Success)
|
||||||
return match.Groups[1].Value;
|
return match.Groups[1].Value;
|
||||||
|
}
|
||||||
|
|
||||||
ServiceProvider.TryGetService<ILoggerService>()
|
ServiceProvider.TryGetService<ILoggerService>()
|
||||||
.AddEntry(eSeverity.Warning, "Unable to get model name from \"{0}\"", VersionResult);
|
.AddEntry(eSeverity.Warning, "Unable to get model name from \"{0}\"", VersionResult);
|
||||||
@@ -68,11 +72,15 @@ namespace ICD.Common.Utils
|
|||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
Regex regex = new Regex(MODEL_VERSION_REGEX);
|
string versionResult = VersionResult;
|
||||||
Match match = regex.Match(VersionResult);
|
if (!String.IsNullOrEmpty(versionResult))
|
||||||
|
{
|
||||||
|
Regex regex = new Regex(MODEL_VERSION_REGEX);
|
||||||
|
Match match = regex.Match(VersionResult);
|
||||||
|
|
||||||
if (match.Success)
|
if (match.Success)
|
||||||
return new Version(match.Groups[1].Value);
|
return new Version(match.Groups[1].Value);
|
||||||
|
}
|
||||||
|
|
||||||
ServiceProvider.TryGetService<ILoggerService>()
|
ServiceProvider.TryGetService<ILoggerService>()
|
||||||
.AddEntry(eSeverity.Warning, "Unable to get model version from \"{0}\"", VersionResult);
|
.AddEntry(eSeverity.Warning, "Unable to get model version from \"{0}\"", VersionResult);
|
||||||
|
|||||||
Reference in New Issue
Block a user