├── .gitattributes ├── .gitignore ├── .idea └── .idea.CsgoTranslator │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── encodings.xml │ ├── indexLayout.xml │ ├── misc.xml │ └── vcs.xml │ └── riderModule.iml ├── .vs └── CsgoTranslator │ └── v16 │ └── .suo ├── CsgoTranslator.sln ├── CsgoTranslator.sln.DotSettings ├── CsgoTranslator ├── .gitignore ├── App.config ├── App.xaml ├── App.xaml.cs ├── CSGO-Translator.csproj ├── Controllers │ ├── CommandsController.cs │ └── LogsController.cs ├── Enums │ ├── ChatType.cs │ └── TelnetGrant.cs ├── EventArgs │ └── TranslatorExceptionEventArgs.cs ├── Exceptions │ ├── GoogleTranslateTimeoutException.cs │ ├── LogfileNotFoundException.cs │ ├── NoInternetException.cs │ └── TranslatorException.cs ├── Helpers │ ├── OptionsManager.cs │ ├── TelnetHelper.cs │ └── Translator.cs ├── LogsController.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MinimalisticTelnet │ ├── Options.cs │ ├── TelnetConnection.cs │ └── Verbs.cs ├── Models │ ├── Chat.cs │ ├── Command.cs │ ├── Log.cs │ ├── TransCommand.cs │ └── Translation.cs ├── OptionsWindow.xaml ├── OptionsWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.manifest ├── bin │ ├── Debug │ │ ├── CsgoTranslator.exe │ │ ├── CsgoTranslator.exe.config │ │ ├── CsgoTranslator.pdb │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.xml │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── System.Buffers.dll │ │ ├── System.Buffers.xml │ │ ├── System.Memory.dll │ │ ├── System.Memory.xml │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Numerics.Vectors.xml │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.xml │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml │ └── Release │ │ ├── CsgoTranslator.exe │ │ ├── CsgoTranslator.exe.config │ │ ├── CsgoTranslator.pdb │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.xml │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── System.Buffers.dll │ │ ├── System.Buffers.xml │ │ ├── System.Memory.dll │ │ ├── System.Memory.xml │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Numerics.Vectors.xml │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.xml │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml ├── obj │ ├── Debug │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── CSGO-Translator.csproj.CopyComplete │ │ ├── CSGO-Translator.csproj.CoreCompileInputs.cache │ │ ├── CSGO-Translator.csproj.FileListAbsolute.txt │ │ ├── CSGO-Translator.csproj.GenerateResource.cache │ │ ├── CSGO-Translator.csprojAssemblyReference.cache │ │ ├── CsgoTranslator.Properties.Resources.resources │ │ ├── CsgoTranslator.csproj.CopyComplete │ │ ├── CsgoTranslator.csproj.CoreCompileInputs.cache │ │ ├── CsgoTranslator.csproj.FileListAbsolute.txt │ │ ├── CsgoTranslator.csproj.GenerateResource.cache │ │ ├── CsgoTranslator.csprojAssemblyReference.cache │ │ ├── CsgoTranslator.exe │ │ ├── CsgoTranslator.g.resources │ │ ├── CsgoTranslator.pdb │ │ ├── CsgoTranslator_Content.g.i.cs │ │ ├── CsgoTranslator_MarkupCompile.cache │ │ ├── CsgoTranslator_MarkupCompile.i.cache │ │ ├── CsgoTranslator_MarkupCompile.lref │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ ├── OptionsWindow.g.cs │ │ ├── OptionsWindow.g.i.cs │ │ └── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ └── Release │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── CSGO-Translator.csproj.CopyComplete │ │ ├── CSGO-Translator.csproj.CoreCompileInputs.cache │ │ ├── CSGO-Translator.csproj.FileListAbsolute.txt │ │ ├── CSGO-Translator.csproj.GenerateResource.cache │ │ ├── CSGO-Translator.csprojAssemblyReference.cache │ │ ├── CsgoTranslator.Properties.Resources.resources │ │ ├── CsgoTranslator.csproj.CopyComplete │ │ ├── CsgoTranslator.csproj.CoreCompileInputs.cache │ │ ├── CsgoTranslator.csproj.FileListAbsolute.txt │ │ ├── CsgoTranslator.csproj.GenerateResource.cache │ │ ├── CsgoTranslator.csprojAssemblyReference.cache │ │ ├── CsgoTranslator.g.resources │ │ ├── CsgoTranslator.pdb │ │ ├── CsgoTranslator_Content.g.i.cs │ │ ├── CsgoTranslator_MarkupCompile.cache │ │ ├── CsgoTranslator_MarkupCompile.i.cache │ │ ├── CsgoTranslator_MarkupCompile.lref │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ ├── OptionsWindow.g.cs │ │ ├── OptionsWindow.g.i.cs │ │ └── TempPE │ │ └── Properties.Resources.Designer.cs.dll └── packages.config ├── MinimalisticTelnet ├── MinimalisticTelnet.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── TelnetInterface.cs ├── README.md ├── img ├── command.png ├── options.png ├── translation-to-chat.png └── translations-in-app.png └── packages ├── Microsoft.Bcl.AsyncInterfaces.1.0.0 ├── .signature.p7s ├── LICENSE.TXT ├── Microsoft.Bcl.AsyncInterfaces.1.0.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net461 │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ └── Microsoft.Bcl.AsyncInterfaces.xml │ ├── netstandard2.0 │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ └── Microsoft.Bcl.AsyncInterfaces.xml │ └── netstandard2.1 │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ └── Microsoft.Bcl.AsyncInterfaces.xml ├── ref │ ├── net461 │ │ └── Microsoft.Bcl.AsyncInterfaces.dll │ ├── netstandard2.0 │ │ └── Microsoft.Bcl.AsyncInterfaces.dll │ └── netstandard2.1 │ │ └── Microsoft.Bcl.AsyncInterfaces.dll ├── useSharedDesignerContext.txt └── version.txt ├── Newtonsoft.Json.12.0.3 ├── .signature.p7s ├── LICENSE.md ├── Newtonsoft.Json.12.0.3.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 │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── packageIcon.png ├── System.Buffers.4.4.0 ├── .signature.p7s ├── LICENSE.TXT ├── System.Buffers.4.4.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.1 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ └── netstandard2.0 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml ├── ref │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.1 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ └── netstandard2.0 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml ├── useSharedDesignerContext.txt └── version.txt ├── System.Memory.4.5.3 ├── .signature.p7s ├── LICENSE.TXT ├── System.Memory.4.5.3.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── netcoreapp2.1 │ │ └── _._ │ ├── netstandard1.1 │ │ ├── System.Memory.dll │ │ └── System.Memory.xml │ └── netstandard2.0 │ │ ├── System.Memory.dll │ │ └── System.Memory.xml ├── ref │ └── netcoreapp2.1 │ │ └── _._ ├── useSharedDesignerContext.txt └── version.txt ├── System.Numerics.Vectors.4.4.0 ├── .signature.p7s ├── LICENSE.TXT ├── System.Numerics.Vectors.4.4.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── netstandard2.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── portable-net45+win8+wp8+wpa81 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── netstandard2.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── useSharedDesignerContext.txt └── version.txt ├── System.Runtime.CompilerServices.Unsafe.4.5.2 ├── .signature.p7s ├── LICENSE.TXT ├── System.Runtime.CompilerServices.Unsafe.4.5.2.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── netcoreapp2.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── netstandard1.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ └── netstandard2.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml ├── ref │ ├── netstandard1.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ └── netstandard2.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml ├── useSharedDesignerContext.txt └── version.txt └── System.Threading.Tasks.Extensions.4.5.2 ├── .signature.p7s ├── LICENSE.TXT ├── System.Threading.Tasks.Extensions.4.5.2.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib ├── MonoAndroid10 │ └── _._ ├── MonoTouch10 │ └── _._ ├── netcoreapp2.1 │ └── _._ ├── netstandard1.0 │ ├── System.Threading.Tasks.Extensions.dll │ └── System.Threading.Tasks.Extensions.xml ├── netstandard2.0 │ ├── System.Threading.Tasks.Extensions.dll │ └── System.Threading.Tasks.Extensions.xml ├── portable-net45+win8+wp8+wpa81 │ ├── System.Threading.Tasks.Extensions.dll │ └── System.Threading.Tasks.Extensions.xml ├── xamarinios10 │ └── _._ ├── xamarinmac20 │ └── _._ ├── xamarintvos10 │ └── _._ └── xamarinwatchos10 │ └── _._ ├── ref ├── MonoAndroid10 │ └── _._ ├── MonoTouch10 │ └── _._ ├── netcoreapp2.1 │ └── _._ ├── xamarinios10 │ └── _._ ├── xamarinmac20 │ └── _._ ├── xamarintvos10 │ └── _._ └── xamarinwatchos10 │ └── _._ ├── useSharedDesignerContext.txt └── version.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.CsgoTranslator/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/.idea/.idea.CsgoTranslator/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.CsgoTranslator/.idea/.name: -------------------------------------------------------------------------------- 1 | CsgoTranslator -------------------------------------------------------------------------------- /.idea/.idea.CsgoTranslator/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/.idea/.idea.CsgoTranslator/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.CsgoTranslator/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/.idea/.idea.CsgoTranslator/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.CsgoTranslator/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/.idea/.idea.CsgoTranslator/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/.idea.CsgoTranslator/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/.idea/.idea.CsgoTranslator/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/.idea.CsgoTranslator/riderModule.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/.idea/.idea.CsgoTranslator/riderModule.iml -------------------------------------------------------------------------------- /.vs/CsgoTranslator/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/.vs/CsgoTranslator/v16/.suo -------------------------------------------------------------------------------- /CsgoTranslator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator.sln -------------------------------------------------------------------------------- /CsgoTranslator.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator.sln.DotSettings -------------------------------------------------------------------------------- /CsgoTranslator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/.gitignore -------------------------------------------------------------------------------- /CsgoTranslator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/App.config -------------------------------------------------------------------------------- /CsgoTranslator/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/App.xaml -------------------------------------------------------------------------------- /CsgoTranslator/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/App.xaml.cs -------------------------------------------------------------------------------- /CsgoTranslator/CSGO-Translator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/CSGO-Translator.csproj -------------------------------------------------------------------------------- /CsgoTranslator/Controllers/CommandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Controllers/CommandsController.cs -------------------------------------------------------------------------------- /CsgoTranslator/Controllers/LogsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Controllers/LogsController.cs -------------------------------------------------------------------------------- /CsgoTranslator/Enums/ChatType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Enums/ChatType.cs -------------------------------------------------------------------------------- /CsgoTranslator/Enums/TelnetGrant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Enums/TelnetGrant.cs -------------------------------------------------------------------------------- /CsgoTranslator/EventArgs/TranslatorExceptionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/EventArgs/TranslatorExceptionEventArgs.cs -------------------------------------------------------------------------------- /CsgoTranslator/Exceptions/GoogleTranslateTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Exceptions/GoogleTranslateTimeoutException.cs -------------------------------------------------------------------------------- /CsgoTranslator/Exceptions/LogfileNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Exceptions/LogfileNotFoundException.cs -------------------------------------------------------------------------------- /CsgoTranslator/Exceptions/NoInternetException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Exceptions/NoInternetException.cs -------------------------------------------------------------------------------- /CsgoTranslator/Exceptions/TranslatorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Exceptions/TranslatorException.cs -------------------------------------------------------------------------------- /CsgoTranslator/Helpers/OptionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Helpers/OptionsManager.cs -------------------------------------------------------------------------------- /CsgoTranslator/Helpers/TelnetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Helpers/TelnetHelper.cs -------------------------------------------------------------------------------- /CsgoTranslator/Helpers/Translator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Helpers/Translator.cs -------------------------------------------------------------------------------- /CsgoTranslator/LogsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/LogsController.cs -------------------------------------------------------------------------------- /CsgoTranslator/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/MainWindow.xaml -------------------------------------------------------------------------------- /CsgoTranslator/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/MainWindow.xaml.cs -------------------------------------------------------------------------------- /CsgoTranslator/MinimalisticTelnet/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/MinimalisticTelnet/Options.cs -------------------------------------------------------------------------------- /CsgoTranslator/MinimalisticTelnet/TelnetConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/MinimalisticTelnet/TelnetConnection.cs -------------------------------------------------------------------------------- /CsgoTranslator/MinimalisticTelnet/Verbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/MinimalisticTelnet/Verbs.cs -------------------------------------------------------------------------------- /CsgoTranslator/Models/Chat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Models/Chat.cs -------------------------------------------------------------------------------- /CsgoTranslator/Models/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Models/Command.cs -------------------------------------------------------------------------------- /CsgoTranslator/Models/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Models/Log.cs -------------------------------------------------------------------------------- /CsgoTranslator/Models/TransCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Models/TransCommand.cs -------------------------------------------------------------------------------- /CsgoTranslator/Models/Translation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Models/Translation.cs -------------------------------------------------------------------------------- /CsgoTranslator/OptionsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/OptionsWindow.xaml -------------------------------------------------------------------------------- /CsgoTranslator/OptionsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/OptionsWindow.xaml.cs -------------------------------------------------------------------------------- /CsgoTranslator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CsgoTranslator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CsgoTranslator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Properties/Resources.resx -------------------------------------------------------------------------------- /CsgoTranslator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CsgoTranslator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/Properties/Settings.settings -------------------------------------------------------------------------------- /CsgoTranslator/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/app.manifest -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/CsgoTranslator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/CsgoTranslator.exe -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/CsgoTranslator.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/CsgoTranslator.exe.config -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/CsgoTranslator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/CsgoTranslator.pdb -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/Microsoft.Bcl.AsyncInterfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/Microsoft.Bcl.AsyncInterfaces.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/System.Buffers.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/System.Buffers.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/System.Memory.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/System.Memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/System.Memory.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Debug/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Debug/System.Threading.Tasks.Extensions.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/CsgoTranslator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/CsgoTranslator.exe -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/CsgoTranslator.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/CsgoTranslator.exe.config -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/CsgoTranslator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/CsgoTranslator.pdb -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/Microsoft.Bcl.AsyncInterfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/Microsoft.Bcl.AsyncInterfaces.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/System.Buffers.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/System.Buffers.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/System.Memory.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/System.Memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/System.Memory.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /CsgoTranslator/bin/Release/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/bin/Release/System.Threading.Tasks.Extensions.xml -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CSGO-Translator.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CSGO-Translator.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bd62cf10237301991a07b243f9933f392eb679c4 2 | -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CSGO-Translator.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CSGO-Translator.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CSGO-Translator.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CSGO-Translator.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CSGO-Translator.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CSGO-Translator.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CsgoTranslator.Properties.Resources.resources -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b82192f901f57b4787a916c34ef991c648a8ec7a 2 | -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CsgoTranslator.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CsgoTranslator.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CsgoTranslator.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CsgoTranslator.exe -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CsgoTranslator.g.resources -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CsgoTranslator.pdb -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator_Content.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CsgoTranslator_Content.g.i.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CsgoTranslator_MarkupCompile.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CsgoTranslator_MarkupCompile.i.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/CsgoTranslator_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/CsgoTranslator_MarkupCompile.lref -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/OptionsWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/OptionsWindow.g.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/OptionsWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/OptionsWindow.g.i.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/App.g.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/App.g.i.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CSGO-Translator.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CSGO-Translator.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3ddb7d4081405220497e5499fbca299bf51e930b 2 | -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CSGO-Translator.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CSGO-Translator.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CSGO-Translator.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CSGO-Translator.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CSGO-Translator.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CSGO-Translator.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CsgoTranslator.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CsgoTranslator.Properties.Resources.resources -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CsgoTranslator.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CsgoTranslator.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CsgoTranslator.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CsgoTranslator.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CsgoTranslator.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CsgoTranslator.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CsgoTranslator.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CsgoTranslator.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CsgoTranslator.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CsgoTranslator.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CsgoTranslator.g.resources -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CsgoTranslator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CsgoTranslator.pdb -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CsgoTranslator_Content.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CsgoTranslator_Content.g.i.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CsgoTranslator_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CsgoTranslator_MarkupCompile.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CsgoTranslator_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CsgoTranslator_MarkupCompile.i.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/CsgoTranslator_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/CsgoTranslator_MarkupCompile.lref -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/MainWindow.g.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/MainWindow.g.i.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/OptionsWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/OptionsWindow.g.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/OptionsWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/OptionsWindow.g.i.cs -------------------------------------------------------------------------------- /CsgoTranslator/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /CsgoTranslator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/CsgoTranslator/packages.config -------------------------------------------------------------------------------- /MinimalisticTelnet/MinimalisticTelnet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/MinimalisticTelnet/MinimalisticTelnet.csproj -------------------------------------------------------------------------------- /MinimalisticTelnet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/MinimalisticTelnet/Program.cs -------------------------------------------------------------------------------- /MinimalisticTelnet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/MinimalisticTelnet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MinimalisticTelnet/TelnetInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/MinimalisticTelnet/TelnetInterface.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/README.md -------------------------------------------------------------------------------- /img/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/img/command.png -------------------------------------------------------------------------------- /img/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/img/options.png -------------------------------------------------------------------------------- /img/translation-to-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/img/translation-to-chat.png -------------------------------------------------------------------------------- /img/translations-in-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/img/translations-in-app.png -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/Microsoft.Bcl.AsyncInterfaces.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/Microsoft.Bcl.AsyncInterfaces.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/lib/net461/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/lib/net461/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/lib/net461/Microsoft.Bcl.AsyncInterfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/lib/net461/Microsoft.Bcl.AsyncInterfaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/ref/net461/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/ref/net461/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.0.0/version.txt: -------------------------------------------------------------------------------- 1 | 4ac4c0367003fe3973a3648eb0715ddb0e3bbcea 2 | -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/Newtonsoft.Json.12.0.3/packageIcon.png -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Buffers.4.4.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Buffers.4.4.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/System.Buffers.4.4.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Buffers.4.4.0/System.Buffers.4.4.0.nupkg -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Buffers.4.4.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/lib/netstandard1.1/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Buffers.4.4.0/lib/netstandard1.1/System.Buffers.dll -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/lib/netstandard1.1/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Buffers.4.4.0/lib/netstandard1.1/System.Buffers.xml -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/lib/netstandard2.0/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Buffers.4.4.0/lib/netstandard2.0/System.Buffers.dll -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/lib/netstandard2.0/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Buffers.4.4.0/lib/netstandard2.0/System.Buffers.xml -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/ref/netstandard1.1/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Buffers.4.4.0/ref/netstandard1.1/System.Buffers.dll -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/ref/netstandard1.1/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Buffers.4.4.0/ref/netstandard1.1/System.Buffers.xml -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/ref/netstandard2.0/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Buffers.4.4.0/ref/netstandard2.0/System.Buffers.dll -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/ref/netstandard2.0/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Buffers.4.4.0/ref/netstandard2.0/System.Buffers.xml -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.4.0/version.txt: -------------------------------------------------------------------------------- 1 | 8321c729934c0f8be754953439b88e6e1c120c24 2 | -------------------------------------------------------------------------------- /packages/System.Memory.4.5.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Memory.4.5.3/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Memory.4.5.3/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Memory.4.5.3/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Memory.4.5.3/System.Memory.4.5.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Memory.4.5.3/System.Memory.4.5.3.nupkg -------------------------------------------------------------------------------- /packages/System.Memory.4.5.3/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Memory.4.5.3/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Memory.4.5.3/lib/netcoreapp2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Memory.4.5.3/lib/netstandard1.1/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Memory.4.5.3/lib/netstandard1.1/System.Memory.dll -------------------------------------------------------------------------------- /packages/System.Memory.4.5.3/lib/netstandard1.1/System.Memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Memory.4.5.3/lib/netstandard1.1/System.Memory.xml -------------------------------------------------------------------------------- /packages/System.Memory.4.5.3/lib/netstandard2.0/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Memory.4.5.3/lib/netstandard2.0/System.Memory.dll -------------------------------------------------------------------------------- /packages/System.Memory.4.5.3/lib/netstandard2.0/System.Memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Memory.4.5.3/lib/netstandard2.0/System.Memory.xml -------------------------------------------------------------------------------- /packages/System.Memory.4.5.3/ref/netcoreapp2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Memory.4.5.3/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Memory.4.5.3/version.txt: -------------------------------------------------------------------------------- 1 | c6cf790234e063b855fcdb50f3fb1b3cfac73275 2 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/System.Numerics.Vectors.4.4.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/System.Numerics.Vectors.4.4.0.nupkg -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/lib/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/net46/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/lib/net46/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/lib/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/netstandard1.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/lib/netstandard1.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/netstandard2.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/lib/netstandard2.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/ref/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/net46/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/ref/net46/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/ref/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/netstandard1.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/ref/netstandard1.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/netstandard2.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/ref/netstandard2.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/netstandard2.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Numerics.Vectors.4.4.0/ref/netstandard2.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.4.0/version.txt: -------------------------------------------------------------------------------- 1 | 8321c729934c0f8be754953439b88e6e1c120c24 2 | -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/System.Runtime.CompilerServices.Unsafe.4.5.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/System.Runtime.CompilerServices.Unsafe.4.5.2.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Threading.Tasks.Extensions.4.5.2/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Threading.Tasks.Extensions.4.5.2/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/System.Threading.Tasks.Extensions.4.5.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Threading.Tasks.Extensions.4.5.2/System.Threading.Tasks.Extensions.4.5.2.nupkg -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Threading.Tasks.Extensions.4.5.2/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/netcoreapp2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Threading.Tasks.Extensions.4.5.2/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Threading.Tasks.Extensions.4.5.2/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Threading.Tasks.Extensions.4.5.2/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/netstandard2.0/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Threading.Tasks.Extensions.4.5.2/lib/netstandard2.0/System.Threading.Tasks.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Threading.Tasks.Extensions.4.5.2/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiekNijland/CSGO-Translator/HEAD/packages/System.Threading.Tasks.Extensions.4.5.2/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/ref/netcoreapp2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.2/version.txt: -------------------------------------------------------------------------------- 1 | 99ce22c306b07f99ddae60f443d23a983ae78f7b 2 | --------------------------------------------------------------------------------