diff --git a/src/WireMock.Net.StandAlone/WireMock.Net.StandAlone.csproj b/src/WireMock.Net.StandAlone/WireMock.Net.StandAlone.csproj index 1cb729db..2b06714f 100644 --- a/src/WireMock.Net.StandAlone/WireMock.Net.StandAlone.csproj +++ b/src/WireMock.Net.StandAlone/WireMock.Net.StandAlone.csproj @@ -3,7 +3,7 @@ Lightweight StandAlone Http Mocking Server for .Net. WireMock.Net.StandAlone - 1.0.2.4-preview-01 + 1.0.2.4-preview-02 Stef Heyenrath net452;net46;netstandard1.3;netstandard2.0 @@ -31,7 +31,7 @@ All - + diff --git a/src/WireMock.Net/Matchers/XPathMatcher.cs b/src/WireMock.Net/Matchers/XPathMatcher.cs index 560f79d2..ddf4c1f3 100644 --- a/src/WireMock.Net/Matchers/XPathMatcher.cs +++ b/src/WireMock.Net/Matchers/XPathMatcher.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Xml; using JetBrains.Annotations; using WireMock.Validation; -#if !NETSTANDARD +#if !NETSTANDARD1_3 using Wmhelp.XPath2; #endif @@ -41,7 +41,7 @@ namespace WireMock.Matchers try { var nav = new XmlDocument { InnerXml = input }.CreateNavigator(); -#if NETSTANDARD +#if NETSTANDARD1_3 return MatchScores.ToScore(_patterns.Select(p => true.Equals(nav.Evaluate($"boolean({p})")))); #else return MatchScores.ToScore(_patterns.Select(p => true.Equals(nav.XPath2Evaluate($"boolean({p})")))); diff --git a/src/WireMock.Net/WireMock.Net.csproj b/src/WireMock.Net/WireMock.Net.csproj index b7b787e6..1f362f8b 100644 --- a/src/WireMock.Net/WireMock.Net.csproj +++ b/src/WireMock.Net/WireMock.Net.csproj @@ -3,10 +3,9 @@ Lightweight Http Mocking Server for .Net, inspired by WireMock from the Java landscape. WireMock.Net - 1.0.2.4-preview-01 + 1.0.2.4-preview-02 Alexandre Victoor;Stef Heyenrath net452;net46;netstandard1.3;netstandard2.0 - true WireMock.Net WireMock.Net @@ -35,35 +34,29 @@ - + - - - - - - - + - + - + - - + + \ No newline at end of file