├── .gitattributes ├── .vs └── BK2BT │ └── v15 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── App.config ├── BK2BT.csproj ├── BK2BT.sln ├── BK2BT_1_TemporaryKey.pfx ├── BK2BT_TemporaryKey.pfx ├── BTBinFile.cs ├── BinManager.cs ├── F3DEXParser.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Functions.cs ├── GPL_License.md ├── GPL_License.txt ├── LICENSE ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── OpenTK.dll.config ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── Renderer.cs ├── Textures.cs ├── Vertex.cs ├── bin └── Release │ └── BK2BT.exe ├── honeycomb.ico ├── packages.config ├── packages ├── Costura.Fody.3.3.3 │ ├── .signature.p7s │ ├── Costura.Fody.3.3.3.nupkg │ ├── build │ │ └── Costura.Fody.props │ ├── lib │ │ └── net40 │ │ │ ├── Costura.dll │ │ │ └── Costura.xml │ ├── netclassicweaver │ │ ├── Costura.Fody.dll │ │ ├── Costura.Fody.pdb │ │ └── Costura.Fody.xcf │ └── netstandardweaver │ │ ├── Costura.Fody.dll │ │ ├── Costura.Fody.pdb │ │ └── Costura.Fody.xcf ├── Fody.4.2.1 │ ├── .signature.p7s │ ├── Fody.4.2.1.nupkg │ ├── build │ │ └── Fody.targets │ ├── netclassictask │ │ ├── Fody.dll │ │ ├── FodyCommon.dll │ │ ├── FodyHelpers.dll │ │ ├── FodyIsolated.dll │ │ ├── Mono.Cecil.Mdb.dll │ │ ├── Mono.Cecil.Mdb.pdb │ │ ├── Mono.Cecil.Pdb.dll │ │ ├── Mono.Cecil.Pdb.pdb │ │ ├── Mono.Cecil.Rocks.dll │ │ ├── Mono.Cecil.Rocks.pdb │ │ ├── Mono.Cecil.dll │ │ └── Mono.Cecil.pdb │ └── netstandardtask │ │ ├── Fody.dll │ │ ├── FodyCommon.dll │ │ ├── FodyHelpers.dll │ │ ├── FodyIsolated.dll │ │ ├── Mono.Cecil.Mdb.dll │ │ ├── Mono.Cecil.Mdb.pdb │ │ ├── Mono.Cecil.Pdb.dll │ │ ├── Mono.Cecil.Pdb.pdb │ │ ├── Mono.Cecil.Rocks.dll │ │ ├── Mono.Cecil.Rocks.pdb │ │ ├── Mono.Cecil.dll │ │ └── Mono.Cecil.pdb ├── OpenTK.3.0.1 │ ├── .signature.p7s │ ├── OpenTK.3.0.1.nupkg │ ├── content │ │ └── OpenTK.dll.config │ └── lib │ │ └── net20 │ │ ├── OpenTK.dll │ │ ├── OpenTK.pdb │ │ └── OpenTK.xml ├── OpenTK.GLControl.3.0.1 │ ├── .signature.p7s │ ├── OpenTK.GLControl.3.0.1.nupkg │ └── lib │ │ └── net20 │ │ ├── OpenTK.GLControl.dll │ │ ├── OpenTK.GLControl.pdb │ │ └── OpenTK.GLControl.xml ├── System.Numerics.Vectors.4.6.0-preview5.19224.8 │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Numerics.Vectors.4.6.0-preview5.19224.8.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 │ │ ├── uap10.0.16299 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ ├── System.Numerics.Vectors.dll │ │ │ └── System.Numerics.Vectors.xml │ │ ├── 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 │ │ ├── uap10.0.16299 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── useSharedDesignerContext.txt │ └── version.txt ├── System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8 │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8.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.ValueTuple.4.5.0 │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.ValueTuple.4.5.0.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net461 │ │ ├── System.ValueTuple.dll │ │ └── System.ValueTuple.xml │ ├── net47 │ │ ├── System.ValueTuple.dll │ │ └── System.ValueTuple.xml │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.0 │ │ ├── System.ValueTuple.dll │ │ └── System.ValueTuple.xml │ ├── netstandard2.0 │ │ └── _._ │ ├── portable-net40+sl4+win8+wp8 │ │ ├── System.ValueTuple.dll │ │ └── System.ValueTuple.xml │ ├── uap10.0.16299 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ │ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net461 │ │ └── System.ValueTuple.dll │ ├── net47 │ │ └── System.ValueTuple.dll │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard2.0 │ │ └── _._ │ ├── portable-net40+sl4+win8+wp8 │ │ └── System.ValueTuple.dll │ ├── uap10.0.16299 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ │ ├── useSharedDesignerContext.txt │ └── version.txt └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vs/BK2BT/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/.vs/BK2BT/v15/.suo -------------------------------------------------------------------------------- /.vs/BK2BT/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/BK2BT/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/.vs/BK2BT/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/BK2BT/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/.vs/BK2BT/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/BK2BT/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/.vs/BK2BT/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/App.config -------------------------------------------------------------------------------- /BK2BT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/BK2BT.csproj -------------------------------------------------------------------------------- /BK2BT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/BK2BT.sln -------------------------------------------------------------------------------- /BK2BT_1_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/BK2BT_1_TemporaryKey.pfx -------------------------------------------------------------------------------- /BK2BT_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/BK2BT_TemporaryKey.pfx -------------------------------------------------------------------------------- /BTBinFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/BTBinFile.cs -------------------------------------------------------------------------------- /BinManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/BinManager.cs -------------------------------------------------------------------------------- /F3DEXParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/F3DEXParser.cs -------------------------------------------------------------------------------- /FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/FodyWeavers.xml -------------------------------------------------------------------------------- /FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/FodyWeavers.xsd -------------------------------------------------------------------------------- /Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/Functions.cs -------------------------------------------------------------------------------- /GPL_License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/GPL_License.md -------------------------------------------------------------------------------- /GPL_License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/GPL_License.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/LICENSE -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/MainForm.resx -------------------------------------------------------------------------------- /OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/OpenTK.dll.config -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/Properties/app.manifest -------------------------------------------------------------------------------- /Renderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/Renderer.cs -------------------------------------------------------------------------------- /Textures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/Textures.cs -------------------------------------------------------------------------------- /Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/Vertex.cs -------------------------------------------------------------------------------- /bin/Release/BK2BT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/bin/Release/BK2BT.exe -------------------------------------------------------------------------------- /honeycomb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/honeycomb.ico -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages.config -------------------------------------------------------------------------------- /packages/Costura.Fody.3.3.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Costura.Fody.3.3.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Costura.Fody.3.3.3/Costura.Fody.3.3.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Costura.Fody.3.3.3/Costura.Fody.3.3.3.nupkg -------------------------------------------------------------------------------- /packages/Costura.Fody.3.3.3/build/Costura.Fody.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Costura.Fody.3.3.3/build/Costura.Fody.props -------------------------------------------------------------------------------- /packages/Costura.Fody.3.3.3/lib/net40/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Costura.Fody.3.3.3/lib/net40/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.3.3.3/lib/net40/Costura.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Costura.Fody.3.3.3/lib/net40/Costura.xml -------------------------------------------------------------------------------- /packages/Costura.Fody.3.3.3/netclassicweaver/Costura.Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Costura.Fody.3.3.3/netclassicweaver/Costura.Fody.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.3.3.3/netclassicweaver/Costura.Fody.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Costura.Fody.3.3.3/netclassicweaver/Costura.Fody.pdb -------------------------------------------------------------------------------- /packages/Costura.Fody.3.3.3/netclassicweaver/Costura.Fody.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Costura.Fody.3.3.3/netclassicweaver/Costura.Fody.xcf -------------------------------------------------------------------------------- /packages/Costura.Fody.3.3.3/netstandardweaver/Costura.Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Costura.Fody.3.3.3/netstandardweaver/Costura.Fody.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.3.3.3/netstandardweaver/Costura.Fody.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Costura.Fody.3.3.3/netstandardweaver/Costura.Fody.pdb -------------------------------------------------------------------------------- /packages/Costura.Fody.3.3.3/netstandardweaver/Costura.Fody.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Costura.Fody.3.3.3/netstandardweaver/Costura.Fody.xcf -------------------------------------------------------------------------------- /packages/Fody.4.2.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/.signature.p7s -------------------------------------------------------------------------------- /packages/Fody.4.2.1/Fody.4.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/Fody.4.2.1.nupkg -------------------------------------------------------------------------------- /packages/Fody.4.2.1/build/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/build/Fody.targets -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netclassictask/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netclassictask/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netclassictask/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netclassictask/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netclassictask/FodyHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netclassictask/FodyHelpers.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netclassictask/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netclassictask/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netclassictask/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netclassictask/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netclassictask/Mono.Cecil.Mdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netclassictask/Mono.Cecil.Mdb.pdb -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netclassictask/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netclassictask/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netclassictask/Mono.Cecil.Pdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netclassictask/Mono.Cecil.Pdb.pdb -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netclassictask/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netclassictask/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netclassictask/Mono.Cecil.Rocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netclassictask/Mono.Cecil.Rocks.pdb -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netclassictask/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netclassictask/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netclassictask/Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netclassictask/Mono.Cecil.pdb -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netstandardtask/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netstandardtask/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netstandardtask/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netstandardtask/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netstandardtask/FodyHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netstandardtask/FodyHelpers.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netstandardtask/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netstandardtask/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netstandardtask/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netstandardtask/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netstandardtask/Mono.Cecil.Mdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netstandardtask/Mono.Cecil.Mdb.pdb -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netstandardtask/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netstandardtask/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netstandardtask/Mono.Cecil.Pdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netstandardtask/Mono.Cecil.Pdb.pdb -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netstandardtask/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netstandardtask/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netstandardtask/Mono.Cecil.Rocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netstandardtask/Mono.Cecil.Rocks.pdb -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netstandardtask/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netstandardtask/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Fody.4.2.1/netstandardtask/Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/Fody.4.2.1/netstandardtask/Mono.Cecil.pdb -------------------------------------------------------------------------------- /packages/OpenTK.3.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/OpenTK.3.0.1/.signature.p7s -------------------------------------------------------------------------------- /packages/OpenTK.3.0.1/OpenTK.3.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/OpenTK.3.0.1/OpenTK.3.0.1.nupkg -------------------------------------------------------------------------------- /packages/OpenTK.3.0.1/content/OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/OpenTK.3.0.1/content/OpenTK.dll.config -------------------------------------------------------------------------------- /packages/OpenTK.3.0.1/lib/net20/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/OpenTK.3.0.1/lib/net20/OpenTK.dll -------------------------------------------------------------------------------- /packages/OpenTK.3.0.1/lib/net20/OpenTK.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/OpenTK.3.0.1/lib/net20/OpenTK.pdb -------------------------------------------------------------------------------- /packages/OpenTK.3.0.1/lib/net20/OpenTK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/OpenTK.3.0.1/lib/net20/OpenTK.xml -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/OpenTK.GLControl.3.0.1/.signature.p7s -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.0.1/OpenTK.GLControl.3.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/OpenTK.GLControl.3.0.1/OpenTK.GLControl.3.0.1.nupkg -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.0.1/lib/net20/OpenTK.GLControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/OpenTK.GLControl.3.0.1/lib/net20/OpenTK.GLControl.dll -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.0.1/lib/net20/OpenTK.GLControl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/OpenTK.GLControl.3.0.1/lib/net20/OpenTK.GLControl.pdb -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.0.1/lib/net20/OpenTK.GLControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/OpenTK.GLControl.3.0.1/lib/net20/OpenTK.GLControl.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/System.Numerics.Vectors.4.6.0-preview5.19224.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/System.Numerics.Vectors.4.6.0-preview5.19224.8.nupkg -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/net46/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/net46/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/netstandard1.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/netstandard1.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/netstandard2.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/netstandard2.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/netstandard2.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/netstandard2.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/net45/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/net45/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/net45/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/net45/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/net46/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/net46/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/netstandard1.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/netstandard1.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/netstandard2.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/netstandard2.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/netstandard2.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/netstandard2.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.6.0-preview5.19224.8/version.txt: -------------------------------------------------------------------------------- 1 | d06ce9d2116cb4bda528822e63d32ce3735ea653 2 | -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.6.0-preview6.19303.8/version.txt: -------------------------------------------------------------------------------- 1 | d47cae744ddfb625db8e391cecb261e4c3d7bb1c 2 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/System.ValueTuple.4.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/System.ValueTuple.4.5.0.nupkg -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.xml -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.xml -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.xml -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/netstandard2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/net461/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/ref/net461/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/net47/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/ref/net47/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/netstandard2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/packages/System.ValueTuple.4.5.0/ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/version.txt: -------------------------------------------------------------------------------- 1 | 30ab651fcb4354552bd4891619a0bdd81e0ebdbf 2 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/BK2BT/HEAD/readme.md --------------------------------------------------------------------------------