From 1f86171693d91474011b0394760c9cc607f058e9 Mon Sep 17 00:00:00 2001 From: oising Date: Thu, 29 Jun 2017 12:20:42 -0400 Subject: [PATCH] added 'semver' as core (contrained-safe) accelerator for S.M.A.SemanticVersion --- src/System.Management.Automation/engine/parser/TypeResolver.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/System.Management.Automation/engine/parser/TypeResolver.cs b/src/System.Management.Automation/engine/parser/TypeResolver.cs index e484596a775..5e79aa4945b 100644 --- a/src/System.Management.Automation/engine/parser/TypeResolver.cs +++ b/src/System.Management.Automation/engine/parser/TypeResolver.cs @@ -804,6 +804,7 @@ internal static class CoreTypes { typeof(XmlDocument), new[] { "xml" } }, { typeof(CimSession), new[] { "CimSession" } }, { typeof(MailAddress), new[] { "mailaddress" } }, + { typeof(SemanticVersion), new[] { "semver" } }, #if !CORECLR // Following types not in CoreCLR { typeof(DirectoryEntry), new[] { "adsi" } },