├── CurrentVersion ├── Hurricane.sln ├── Hurricane ├── App.config ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Hurricane.csproj ├── Hurricane.csproj.user ├── Injection │ ├── DLLInjection.cs │ └── Native │ │ └── Native.cs ├── Loader.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Update │ └── CheckUpdates.cs ├── Utils │ └── Utils.cs ├── app.manifest ├── bin │ └── Debug │ │ ├── 0Harmony.dll │ │ ├── 0Harmony.xml │ │ ├── Config.json │ │ ├── Hurricane.exe │ │ ├── Hurricane.exe.config │ │ ├── HurricaneCore.dll │ │ ├── HurricaneTest.exe │ │ ├── Injection32.dll │ │ ├── Injection64.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ └── Strings.txt └── packages.config ├── HurricaneCore ├── Hook │ ├── Config │ │ └── Config.cs │ ├── Environment │ │ ├── ClearConsole.cs │ │ ├── EnvironmentPatch.cs │ │ ├── GetProcesses.cs │ │ ├── GetProcessesByName.cs │ │ ├── ProcessKill.cs │ │ ├── ProcessStart.cs │ │ └── ThreadSleep.cs │ ├── File │ │ ├── FileDelete.cs │ │ ├── FileExists.cs │ │ ├── FileReadAllText.cs │ │ └── ReadAllBytes.cs │ ├── Network │ │ ├── StreamReaderWrite.cs │ │ ├── URLPatch.cs │ │ ├── WebClientDownloadData.cs │ │ └── WebClientDownloadString.cs │ ├── Registry │ │ ├── GetValue.cs │ │ └── SetValue.cs │ ├── SaveStrings │ │ └── Save.cs │ ├── Spoof │ │ ├── HWIDSpoof.cs │ │ ├── HashPatch.cs │ │ ├── MarshalCopy.cs │ │ └── SpoofAssembly.cs │ └── Strings │ │ ├── ExtractStrings.cs │ │ ├── GetStringsFromBytes.cs │ │ ├── RequestStringBuilder.cs │ │ ├── StringContains.cs │ │ └── StringEquals.cs ├── HurricaneCore.csproj ├── Logger.cs ├── MainClass.cs ├── Properties │ └── AssemblyInfo.cs ├── Server │ └── HttpServer.cs ├── Utils │ └── Utils.cs ├── app.config └── packages.config ├── README.md └── packages ├── Lib.Harmony.2.2.2 ├── HarmonyLogo.png ├── LICENSE ├── Lib.Harmony.2.2.2.nupkg └── lib │ ├── net35 │ ├── 0Harmony.dll │ └── 0Harmony.xml │ ├── net45 │ ├── 0Harmony.dll │ └── 0Harmony.xml │ ├── net472 │ ├── 0Harmony.dll │ └── 0Harmony.xml │ ├── net48 │ ├── 0Harmony.dll │ └── 0Harmony.xml │ ├── net5.0 │ ├── 0Harmony.dll │ └── 0Harmony.xml │ ├── net6.0 │ ├── 0Harmony.dll │ └── 0Harmony.xml │ ├── netcoreapp3.0 │ ├── 0Harmony.dll │ └── 0Harmony.xml │ └── netcoreapp3.1 │ ├── 0Harmony.dll │ └── 0Harmony.xml └── Newtonsoft.Json.13.0.2 ├── LICENSE.md ├── Newtonsoft.Json.13.0.2.nupkg ├── README.md ├── 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 ├── net6.0 │ ├── 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 └── packageIcon.png /CurrentVersion: -------------------------------------------------------------------------------- 1 | 1.1 2 | -------------------------------------------------------------------------------- /Hurricane.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane.sln -------------------------------------------------------------------------------- /Hurricane/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/App.config -------------------------------------------------------------------------------- /Hurricane/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/FodyWeavers.xml -------------------------------------------------------------------------------- /Hurricane/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/FodyWeavers.xsd -------------------------------------------------------------------------------- /Hurricane/Hurricane.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/Hurricane.csproj -------------------------------------------------------------------------------- /Hurricane/Hurricane.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/Hurricane.csproj.user -------------------------------------------------------------------------------- /Hurricane/Injection/DLLInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/Injection/DLLInjection.cs -------------------------------------------------------------------------------- /Hurricane/Injection/Native/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/Injection/Native/Native.cs -------------------------------------------------------------------------------- /Hurricane/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/Loader.cs -------------------------------------------------------------------------------- /Hurricane/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/Program.cs -------------------------------------------------------------------------------- /Hurricane/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Hurricane/Update/CheckUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/Update/CheckUpdates.cs -------------------------------------------------------------------------------- /Hurricane/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/Utils/Utils.cs -------------------------------------------------------------------------------- /Hurricane/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/app.manifest -------------------------------------------------------------------------------- /Hurricane/bin/Debug/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/bin/Debug/0Harmony.dll -------------------------------------------------------------------------------- /Hurricane/bin/Debug/0Harmony.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/bin/Debug/0Harmony.xml -------------------------------------------------------------------------------- /Hurricane/bin/Debug/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/bin/Debug/Config.json -------------------------------------------------------------------------------- /Hurricane/bin/Debug/Hurricane.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/bin/Debug/Hurricane.exe -------------------------------------------------------------------------------- /Hurricane/bin/Debug/Hurricane.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/bin/Debug/Hurricane.exe.config -------------------------------------------------------------------------------- /Hurricane/bin/Debug/HurricaneCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/bin/Debug/HurricaneCore.dll -------------------------------------------------------------------------------- /Hurricane/bin/Debug/HurricaneTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/bin/Debug/HurricaneTest.exe -------------------------------------------------------------------------------- /Hurricane/bin/Debug/Injection32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/bin/Debug/Injection32.dll -------------------------------------------------------------------------------- /Hurricane/bin/Debug/Injection64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/bin/Debug/Injection64.dll -------------------------------------------------------------------------------- /Hurricane/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Hurricane/bin/Debug/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/bin/Debug/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Hurricane/bin/Debug/Strings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hurricane/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/Hurricane/packages.config -------------------------------------------------------------------------------- /HurricaneCore/Hook/Config/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Config/Config.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Environment/ClearConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Environment/ClearConsole.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Environment/EnvironmentPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Environment/EnvironmentPatch.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Environment/GetProcesses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Environment/GetProcesses.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Environment/GetProcessesByName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Environment/GetProcessesByName.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Environment/ProcessKill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Environment/ProcessKill.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Environment/ProcessStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Environment/ProcessStart.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Environment/ThreadSleep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Environment/ThreadSleep.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/File/FileDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/File/FileDelete.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/File/FileExists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/File/FileExists.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/File/FileReadAllText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/File/FileReadAllText.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/File/ReadAllBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/File/ReadAllBytes.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Network/StreamReaderWrite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Network/StreamReaderWrite.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Network/URLPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Network/URLPatch.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Network/WebClientDownloadData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Network/WebClientDownloadData.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Network/WebClientDownloadString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Network/WebClientDownloadString.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Registry/GetValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Registry/GetValue.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Registry/SetValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Registry/SetValue.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/SaveStrings/Save.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/SaveStrings/Save.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Spoof/HWIDSpoof.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Spoof/HWIDSpoof.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Spoof/HashPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Spoof/HashPatch.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Spoof/MarshalCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Spoof/MarshalCopy.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Spoof/SpoofAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Spoof/SpoofAssembly.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Strings/ExtractStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Strings/ExtractStrings.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Strings/GetStringsFromBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Strings/GetStringsFromBytes.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Strings/RequestStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Strings/RequestStringBuilder.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Strings/StringContains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Strings/StringContains.cs -------------------------------------------------------------------------------- /HurricaneCore/Hook/Strings/StringEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Hook/Strings/StringEquals.cs -------------------------------------------------------------------------------- /HurricaneCore/HurricaneCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/HurricaneCore.csproj -------------------------------------------------------------------------------- /HurricaneCore/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Logger.cs -------------------------------------------------------------------------------- /HurricaneCore/MainClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/MainClass.cs -------------------------------------------------------------------------------- /HurricaneCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HurricaneCore/Server/HttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Server/HttpServer.cs -------------------------------------------------------------------------------- /HurricaneCore/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/Utils/Utils.cs -------------------------------------------------------------------------------- /HurricaneCore/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/app.config -------------------------------------------------------------------------------- /HurricaneCore/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/HurricaneCore/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/README.md -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/HarmonyLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/HarmonyLogo.png -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/LICENSE -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/Lib.Harmony.2.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/Lib.Harmony.2.2.2.nupkg -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/net35/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/net35/0Harmony.dll -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/net35/0Harmony.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/net35/0Harmony.xml -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/net45/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/net45/0Harmony.dll -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/net45/0Harmony.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/net45/0Harmony.xml -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/net472/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/net472/0Harmony.dll -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/net472/0Harmony.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/net472/0Harmony.xml -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/net48/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/net48/0Harmony.dll -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/net48/0Harmony.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/net48/0Harmony.xml -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/net5.0/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/net5.0/0Harmony.dll -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/net5.0/0Harmony.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/net5.0/0Harmony.xml -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/net6.0/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/net6.0/0Harmony.dll -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/net6.0/0Harmony.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/net6.0/0Harmony.xml -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/netcoreapp3.0/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/netcoreapp3.0/0Harmony.dll -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/netcoreapp3.0/0Harmony.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/netcoreapp3.0/0Harmony.xml -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/netcoreapp3.1/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/netcoreapp3.1/0Harmony.dll -------------------------------------------------------------------------------- /packages/Lib.Harmony.2.2.2/lib/netcoreapp3.1/0Harmony.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Lib.Harmony.2.2.2/lib/netcoreapp3.1/0Harmony.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/Newtonsoft.Json.13.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/Newtonsoft.Json.13.0.2.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/README.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/net6.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/net6.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.2/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CabboShiba/Hurricane-Best-NET-Patcher/HEAD/packages/Newtonsoft.Json.13.0.2/packageIcon.png --------------------------------------------------------------------------------