├── .gitignore ├── JotForm.sln ├── JotForm.v11.suo ├── JotForm ├── APIClient.cs ├── JotForm.csproj ├── Properties │ └── AssemblyInfo.cs ├── bin │ ├── Debug │ │ ├── JotForm.dll │ │ ├── JotForm.pdb │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── Release │ │ ├── JotForm.dll │ │ ├── JotForm.pdb │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── JotForm.csproj.FileListAbsolute.txt │ │ ├── JotForm.csprojResolveAssemblyReference.cache │ │ ├── JotForm.dll │ │ └── JotForm.pdb │ └── Release │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── JotForm.csproj.FileListAbsolute.txt │ │ ├── JotForm.csprojResolveAssemblyReference.cache │ │ ├── JotForm.dll │ │ └── JotForm.pdb └── packages.config ├── JotFormTest ├── JotFormTest.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── bin │ ├── Debug │ │ ├── JotForm.dll │ │ ├── JotForm.pdb │ │ ├── JotFormTest.exe │ │ ├── JotFormTest.pdb │ │ ├── JotFormTest.vshost.exe │ │ ├── JotFormTest.vshost.exe.manifest │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── Release │ │ ├── JotForm.dll │ │ ├── JotForm.pdb │ │ ├── JotFormTest.exe │ │ ├── JotFormTest.pdb │ │ ├── JotFormTest.vshost.exe │ │ ├── JotFormTest.vshost.exe.manifest │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── JotFormTest.csproj.FileListAbsolute.txt │ │ ├── JotFormTest.csprojResolveAssemblyReference.cache │ │ ├── JotFormTest.exe │ │ └── JotFormTest.pdb │ └── Release │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── JotFormTest.csproj.FileListAbsolute.txt │ │ ├── JotFormTest.csprojResolveAssemblyReference.cache │ │ ├── JotFormTest.exe │ │ └── JotFormTest.pdb └── packages.config ├── LICENSE ├── README.md └── packages ├── Newtonsoft.Json.5.0.6 ├── Newtonsoft.Json.5.0.6.nupkg ├── Newtonsoft.Json.5.0.6.nuspec └── lib │ ├── net20 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net35 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net40 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net45 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── netcore45 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl4+wp7+win8 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml └── repositories.config /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.mdb 3 | -------------------------------------------------------------------------------- /JotForm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm.sln -------------------------------------------------------------------------------- /JotForm.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm.v11.suo -------------------------------------------------------------------------------- /JotForm/APIClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/APIClient.cs -------------------------------------------------------------------------------- /JotForm/JotForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/JotForm.csproj -------------------------------------------------------------------------------- /JotForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /JotForm/bin/Debug/JotForm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/bin/Debug/JotForm.dll -------------------------------------------------------------------------------- /JotForm/bin/Debug/JotForm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/bin/Debug/JotForm.pdb -------------------------------------------------------------------------------- /JotForm/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /JotForm/bin/Debug/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/bin/Debug/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /JotForm/bin/Release/JotForm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/bin/Release/JotForm.dll -------------------------------------------------------------------------------- /JotForm/bin/Release/JotForm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/bin/Release/JotForm.pdb -------------------------------------------------------------------------------- /JotForm/bin/Release/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/bin/Release/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /JotForm/bin/Release/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/bin/Release/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /JotForm/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /JotForm/obj/Debug/JotForm.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/obj/Debug/JotForm.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /JotForm/obj/Debug/JotForm.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/obj/Debug/JotForm.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /JotForm/obj/Debug/JotForm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/obj/Debug/JotForm.dll -------------------------------------------------------------------------------- /JotForm/obj/Debug/JotForm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/obj/Debug/JotForm.pdb -------------------------------------------------------------------------------- /JotForm/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /JotForm/obj/Release/JotForm.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/obj/Release/JotForm.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /JotForm/obj/Release/JotForm.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/obj/Release/JotForm.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /JotForm/obj/Release/JotForm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/obj/Release/JotForm.dll -------------------------------------------------------------------------------- /JotForm/obj/Release/JotForm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/obj/Release/JotForm.pdb -------------------------------------------------------------------------------- /JotForm/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotForm/packages.config -------------------------------------------------------------------------------- /JotFormTest/JotFormTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/JotFormTest.csproj -------------------------------------------------------------------------------- /JotFormTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/Program.cs -------------------------------------------------------------------------------- /JotFormTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /JotFormTest/bin/Debug/JotForm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Debug/JotForm.dll -------------------------------------------------------------------------------- /JotFormTest/bin/Debug/JotForm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Debug/JotForm.pdb -------------------------------------------------------------------------------- /JotFormTest/bin/Debug/JotFormTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Debug/JotFormTest.exe -------------------------------------------------------------------------------- /JotFormTest/bin/Debug/JotFormTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Debug/JotFormTest.pdb -------------------------------------------------------------------------------- /JotFormTest/bin/Debug/JotFormTest.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Debug/JotFormTest.vshost.exe -------------------------------------------------------------------------------- /JotFormTest/bin/Debug/JotFormTest.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Debug/JotFormTest.vshost.exe.manifest -------------------------------------------------------------------------------- /JotFormTest/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /JotFormTest/bin/Debug/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Debug/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /JotFormTest/bin/Release/JotForm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Release/JotForm.dll -------------------------------------------------------------------------------- /JotFormTest/bin/Release/JotForm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Release/JotForm.pdb -------------------------------------------------------------------------------- /JotFormTest/bin/Release/JotFormTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Release/JotFormTest.exe -------------------------------------------------------------------------------- /JotFormTest/bin/Release/JotFormTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Release/JotFormTest.pdb -------------------------------------------------------------------------------- /JotFormTest/bin/Release/JotFormTest.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Release/JotFormTest.vshost.exe -------------------------------------------------------------------------------- /JotFormTest/bin/Release/JotFormTest.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Release/JotFormTest.vshost.exe.manifest -------------------------------------------------------------------------------- /JotFormTest/bin/Release/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Release/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /JotFormTest/bin/Release/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/bin/Release/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /JotFormTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /JotFormTest/obj/Debug/JotFormTest.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/obj/Debug/JotFormTest.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /JotFormTest/obj/Debug/JotFormTest.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/obj/Debug/JotFormTest.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /JotFormTest/obj/Debug/JotFormTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/obj/Debug/JotFormTest.exe -------------------------------------------------------------------------------- /JotFormTest/obj/Debug/JotFormTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/obj/Debug/JotFormTest.pdb -------------------------------------------------------------------------------- /JotFormTest/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /JotFormTest/obj/Release/JotFormTest.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/obj/Release/JotFormTest.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /JotFormTest/obj/Release/JotFormTest.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/obj/Release/JotFormTest.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /JotFormTest/obj/Release/JotFormTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/obj/Release/JotFormTest.exe -------------------------------------------------------------------------------- /JotFormTest/obj/Release/JotFormTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/obj/Release/JotFormTest.pdb -------------------------------------------------------------------------------- /JotFormTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/JotFormTest/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/README.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/Newtonsoft.Json.5.0.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/Newtonsoft.Json.5.0.6.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/Newtonsoft.Json.5.0.6.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/Newtonsoft.Json.5.0.6.nuspec -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net45+wp80+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net45+wp80+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net45+wp80+win8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net45+wp80+win8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotform/jotform-api-csharp/HEAD/packages/repositories.config --------------------------------------------------------------------------------