├── CSGOSharp.cs ├── Example └── CSGSI Test │ ├── .vs │ └── CSGSI Test │ │ └── v14 │ │ └── .suo │ ├── CSGSI Test.sln │ ├── CSGSI Test │ ├── App.config │ ├── CSGOSharp.cs │ ├── CSGSI Test.csproj │ ├── CSGSI Test.csproj.user │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── FormJSON.Designer.cs │ ├── FormJSON.cs │ ├── FormJSON.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ └── x.png │ ├── bin │ │ └── Debug │ │ │ ├── CSGSI Test.exe │ │ │ ├── CSGSI Test.exe.config │ │ │ ├── CSGSI Test.pdb │ │ │ ├── CSGSI Test.vshost.exe │ │ │ ├── CSGSI Test.vshost.exe.config │ │ │ ├── CSGSI Test.vshost.exe.manifest │ │ │ ├── CSGSI.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.xml │ │ │ └── ico.ico │ ├── ico.ico │ ├── obj │ │ └── Debug │ │ │ ├── CSGSI Test.csproj.FileListAbsolute.txt │ │ │ ├── CSGSI Test.csproj.GenerateResource.Cache │ │ │ ├── CSGSI Test.csprojResolveAssemblyReference.cache │ │ │ ├── CSGSI Test.exe │ │ │ ├── CSGSI Test.pdb │ │ │ ├── CSGSI_Test.Form1.resources │ │ │ ├── CSGSI_Test.FormJSON.resources │ │ │ ├── CSGSI_Test.Properties.Resources.resources │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config │ ├── packages │ └── Newtonsoft.Json.7.0.1 │ │ ├── Newtonsoft.Json.7.0.1.nupkg │ │ ├── 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 │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+wp80+win8+wpa81+dnxcore50 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── tools │ │ └── install.ps1 │ └── x.png └── README.md /CSGOSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/CSGOSharp.cs -------------------------------------------------------------------------------- /Example/CSGSI Test/.vs/CSGSI Test/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/.vs/CSGSI Test/v14/.suo -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test.sln -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/App.config -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/CSGOSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/CSGOSharp.cs -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/CSGSI Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/CSGSI Test.csproj -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/CSGSI Test.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/CSGSI Test.csproj.user -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/Form1.Designer.cs -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/Form1.cs -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/Form1.resx -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/FormJSON.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/FormJSON.Designer.cs -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/FormJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/FormJSON.cs -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/FormJSON.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/FormJSON.resx -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/Program.cs -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/Properties/Resources.resx -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/Properties/Settings.settings -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/Resources/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/Resources/x.png -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI Test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI Test.exe -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI Test.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI Test.exe.config -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI Test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI Test.pdb -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI Test.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI Test.vshost.exe -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI Test.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI Test.vshost.exe.config -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI Test.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI Test.vshost.exe.manifest -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/bin/Debug/CSGSI.dll -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/bin/Debug/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/bin/Debug/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/bin/Debug/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/bin/Debug/ico.ico -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/ico.ico -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI Test.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI Test.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI Test.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI Test.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI Test.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI Test.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI Test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI Test.exe -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI Test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI Test.pdb -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI_Test.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI_Test.Form1.resources -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI_Test.FormJSON.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI_Test.FormJSON.resources -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI_Test.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/obj/Debug/CSGSI_Test.Properties.Resources.resources -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/CSGSI Test/CSGSI Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/CSGSI Test/packages.config -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/Newtonsoft.Json.7.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/Newtonsoft.Json.7.0.1.nupkg -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/packages/Newtonsoft.Json.7.0.1/tools/install.ps1 -------------------------------------------------------------------------------- /Example/CSGSI Test/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/Example/CSGSI Test/x.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelle/CSGSI/HEAD/README.md --------------------------------------------------------------------------------