diff --git a/Example/Example-dotNetCore-vs2017.csproj b/Example/Example-dotNetCore-vs2017.csproj
index 79a6698..5ac9f2b 100644
--- a/Example/Example-dotNetCore-vs2017.csproj
+++ b/Example/Example-dotNetCore-vs2017.csproj
@@ -2,7 +2,7 @@
Exe
- netcoreapp2.2
+ netcoreapp3.1
Example_dotNetCore_vs2017
@@ -11,8 +11,7 @@
-
-
+
diff --git a/Example/WmClientExample.cs b/Example/WmClientExample.cs
index e4b35f6..59720f4 100644
--- a/Example/WmClientExample.cs
+++ b/Example/WmClientExample.cs
@@ -27,7 +27,7 @@ static void Main(string[] args)
{
// First we need to create a WM client instance, to connect to our WM server API at the specified host and port.
// Last parameter is a prefix for path, most of the time we won't need it
- WmClient client = WmClient.Create("http" , "localhost", "8080", "");
+ WmClient client = WmClient.Create("http" , "localhost", "80", "");
if (client != null)
{
diff --git a/Example/app.config b/Example/app.config
deleted file mode 100644
index 7a8723c..0000000
--- a/Example/app.config
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Example/packages.config b/Example/packages.config
deleted file mode 100644
index d3d26ff..0000000
--- a/Example/packages.config
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/NUnit-Test/Properties/AssemblyInfo.cs b/NUnit-Test/Properties/AssemblyInfo.cs
index 5a8fdfc..11be808 100644
--- a/NUnit-Test/Properties/AssemblyInfo.cs
+++ b/NUnit-Test/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2.1.1")]
-[assembly: AssemblyFileVersion("2.1.1")]
+[assembly: AssemblyVersion("2.1.2")]
+[assembly: AssemblyFileVersion("2.1.2")]
diff --git a/NUnit-Test/WmClient-DotNetCore-NUnitTest-vs2017.csproj b/NUnit-Test/WmClient-DotNetCore-NUnitTest-vs2017.csproj
index 63504bd..31e3629 100644
--- a/NUnit-Test/WmClient-DotNetCore-NUnitTest-vs2017.csproj
+++ b/NUnit-Test/WmClient-DotNetCore-NUnitTest-vs2017.csproj
@@ -1,7 +1,7 @@
- netcoreapp2.2
+ netcoreapp3.1
false
diff --git a/Nuget Package-dotNetCore/WMClient_API_DotNetCore.nuspec b/Nuget Package-dotNetCore/WMClient_API_DotNetCore.nuspec
index 99f2bb4..6c8ea40 100644
--- a/Nuget Package-dotNetCore/WMClient_API_DotNetCore.nuspec
+++ b/Nuget Package-dotNetCore/WMClient_API_DotNetCore.nuspec
@@ -2,7 +2,7 @@
WURFL_Microservice_Client.Core
- 2.1.1
+ 2.1.2
WURFL Microservice client API for .NET Core
ScientiaMobile,Inc.
ScientiaMobile,Inc.
@@ -15,6 +15,7 @@
The Client API relies on the presence of a running instance of "WURFL Microservice", available as either a Docker image (obtainable from ScientiaMobile, https://www.scientiamobile.com/products/wurfl-microservice-docker-detect-device/) or a Virtual Machine (AMI, VM instances and such:
https://www.scientiamobile.com/introducing-wurfl-microservice-for-aws/ ) of major Cloud infrastructure providers, such as: AWS, Azure and Google Cloud Platform).
+ 2.1.2 - Fix: Could not load file or assembly 'System.Net.Http.Formatting' error.Set target framework to netcoreapp 3.1
2.1.1 - Ehn: Added cache usage tests. Used HTTP headers in samlple app detection.
2.1.0 - Added LookupHeaders method to API. Improved tests to be executed on different server configurations.
2.0.4 - Fix: naming issue in .NET Core package
@@ -22,13 +23,18 @@ https://www.scientiamobile.com/introducing-wurfl-microservice-for-aws/ ) of majo
2.0.2 - Better packaging and info for NuGet release
2.0.1 - Initial release
+
+
+
+
+
ScientiaMobile, Inc. 2020
Mobile Phone ASP.NET WURFL Browser DDR Device Detection Data Microservice
-
-
+
+
diff --git a/WmClient/Properties/AssemblyInfo.cs b/WmClient/Properties/AssemblyInfo.cs
index 0bd5d20..07f6362 100644
--- a/WmClient/Properties/AssemblyInfo.cs
+++ b/WmClient/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2.1.1")]
-[assembly: AssemblyFileVersion("2.1.1")]
+[assembly: AssemblyVersion("2.1.2")]
+[assembly: AssemblyFileVersion("2.1.2")]
diff --git a/WmClient/WmClient-dotNetCore-vs2017.csproj b/WmClient/WmClient-dotNetCore-vs2017.csproj
index 2e399d4..a63ad1c 100644
--- a/WmClient/WmClient-dotNetCore-vs2017.csproj
+++ b/WmClient/WmClient-dotNetCore-vs2017.csproj
@@ -1,7 +1,7 @@
-
+
- netcoreapp2.2
+ netcoreapp3.1
WmClient
Scientiamobile Inc.
WmClient
diff --git a/WmClient/WmClient.cs b/WmClient/WmClient.cs
index 75ffe48..f186431 100644
--- a/WmClient/WmClient.cs
+++ b/WmClient/WmClient.cs
@@ -739,7 +739,7 @@ public void DestroyConnection()
///
public string GetApiVersion()
{
- return "2.1.1";
+ return "2.1.2";
}
///
diff --git a/WmClient/packages.config b/WmClient/packages.config
deleted file mode 100644
index ab1fe8a..0000000
--- a/WmClient/packages.config
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/dist/dotNetCore/2.1.2/WmClient.dll b/dist/dotNetCore/2.1.2/WmClient.dll
new file mode 100644
index 0000000..5e5e6f3
Binary files /dev/null and b/dist/dotNetCore/2.1.2/WmClient.dll differ