diff --git a/Src/Semantics3/Properties/AssemblyInfo.cs b/Src/Semantics3/Properties/AssemblyInfo.cs
index 535fe33..b1103ea 100644
--- a/Src/Semantics3/Properties/AssemblyInfo.cs
+++ b/Src/Semantics3/Properties/AssemblyInfo.cs
@@ -1,72 +1,72 @@
-#region License
-/******************************************************************************
- * $Id: $
- *
- * Name: Semantics3.cs
- * Project: Semantics3 API C# Client
- * Purpose: C# Client to query Semantics3 APIs.
- * $Author: Srinivasan Kidambi, srinivas@semantics3.com
- *
- ******************************************************************************/
+//#region License
+///******************************************************************************
+// * $Id: $
+// *
+// * Name: Semantics3.cs
+// * Project: Semantics3 API C# Client
+// * Purpose: C# Client to query Semantics3 APIs.
+// * $Author: Srinivasan Kidambi, srinivas@semantics3.com
+// *
+// ******************************************************************************/
-//The MIT License
+////The MIT License
-//Copyright (c) 2013 Semantics3, Inc. https://semantics3.com
+////Copyright (c) 2013 Semantics3, Inc. https://semantics3.com
-//Permission is hereby granted, free of charge, to any person obtaining a copy
-//of this software and associated documentation files (the "Software"), to deal
-//in the Software without restriction, including without limitation the rights
-//to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-//copies of the Software, and to permit persons to whom the Software is
-//furnished to do so, subject to the following conditions:
+////Permission is hereby granted, free of charge, to any person obtaining a copy
+////of this software and associated documentation files (the "Software"), to deal
+////in the Software without restriction, including without limitation the rights
+////to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+////copies of the Software, and to permit persons to whom the Software is
+////furnished to do so, subject to the following conditions:
-//The above copyright notice and this permission notice shall be included in
-//all copies or substantial portions of the Software.
+////The above copyright notice and this permission notice shall be included in
+////all copies or substantial portions of the Software.
-//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-//AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-//LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-//THE SOFTWARE.
-#endregion
+////THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+////IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+////FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+////AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+////LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+////OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+////THE SOFTWARE.
+//#endregion
-using System;
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
+//using System;
+//using System.Reflection;
+//using System.Runtime.CompilerServices;
+//using System.Runtime.InteropServices;
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: CLSCompliant(true)]
-[assembly: AssemblyTitle("Semantics3 API C# Library")]
-[assembly: AssemblyDescription("C# Client Library for querying Semantics3 APIs")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Semantics3")]
-[assembly: AssemblyProduct("Semantics3 API C# Client")]
-[assembly: AssemblyCopyright("Copyright © 2013")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
+//// General Information about an assembly is controlled through the following
+//// set of attributes. Change these attribute values to modify the information
+//// associated with an assembly.
+//[assembly: CLSCompliant(true)]
+//[assembly: AssemblyTitle("Semantics3 API C# Library")]
+//[assembly: AssemblyDescription("C# Client Library for querying Semantics3 APIs")]
+//[assembly: AssemblyConfiguration("")]
+//[assembly: AssemblyCompany("Semantics3")]
+//[assembly: AssemblyProduct("Semantics3 API C# Client")]
+//[assembly: AssemblyCopyright("Copyright © 2013")]
+//[assembly: AssemblyTrademark("")]
+//[assembly: AssemblyCulture("")]
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
+//// Setting ComVisible to false makes the types in this assembly not visible
+//// to COM components. If you need to access a type in this assembly from
+//// COM, set the ComVisible attribute to true on that type.
+//[assembly: ComVisible(false)]
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("3b293707-9b13-45df-aa49-605beffb409e")]
+//// The following GUID is for the ID of the typelib if this project is exposed to COM
+//[assembly: Guid("3b293707-9b13-45df-aa49-605beffb409e")]
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// 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("1.0.0.27")]
-[assembly: AssemblyFileVersion("1.0.0.27")]
+//// Version information for an assembly consists of the following four values:
+////
+//// Major Version
+//// Minor Version
+//// Build Number
+//// Revision
+////
+//// 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("1.0.0.27")]
+//[assembly: AssemblyFileVersion("1.0.0.27")]
diff --git a/Src/Semantics3/Semantics3.cs b/Src/Semantics3/Semantics3.cs
index bcf97a5..2a9b786 100644
--- a/Src/Semantics3/Semantics3.cs
+++ b/Src/Semantics3/Semantics3.cs
@@ -82,6 +82,7 @@ public String fetch(String endpoint, String parameters, String method)
// If method is GET, then send parameters as part of URL
if (method == "GET")
{
+
url = url + "?q=" + System.Web.HttpUtility.UrlEncode(parameters);
}
diff --git a/Src/Semantics3/Semantics3.csproj b/Src/Semantics3/Semantics3.csproj
index 78dceb4..fff3d22 100644
--- a/Src/Semantics3/Semantics3.csproj
+++ b/Src/Semantics3/Semantics3.csproj
@@ -1,69 +1,25 @@
-
-
+
+
- Debug
- x86
- 8.0.30703
- 2.0
- {40154260-15AE-4E86-B418-473505419826}
- Library
- Properties
- Semantics3
- Semantics3
- v4.0
-
-
- 512
+ netstandard2.0;net45
+
+ C# Client Library for querying Semantics3 APIs
+ Semantics3 API C# Library
+ Copyright © 2013
+ 1.0.1.0
+ 1.0.1.0
+ true
-
- x86
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
+
+
+ NETCORE;NETSTANDARD;NETSTANDARD2_0
-
- AnyCPU
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
- true
- bin\Debug\
- DEBUG;TRACE
- full
- AnyCPU
- prompt
-
-
- bin\Release\
- TRACE
- true
- pdbonly
- AnyCPU
- prompt
- false
- false
- false
-
-
-
- ..\packages\Google.GData.Client.2.2.0.0\lib\Google.GData.Client.dll
-
-
- ..\packages\Newtonsoft.Json.5.0.6\lib\net40\Newtonsoft.Json.dll
- False
-
+
+
+
+
+
+
@@ -72,28 +28,10 @@
+
-
-
-
-
-
-
-
-
-
-
-
-
- Designer
-
-
-
-
-
\ No newline at end of file
+
+
+ NET45;NETFULL
+
+
diff --git a/Src/Semantics3/packages.config b/Src/Semantics3/packages.config
deleted file mode 100644
index 0f3e6b8..0000000
--- a/Src/Semantics3/packages.config
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file