├── ClickableTransparentOverlay.dll ├── Data └── StatDescriptions │ ├── atlas_stat_descriptions.json │ ├── expedition_relic_stat_descriptions.json │ └── stat_descriptions.json ├── ExileCore2.deps.json ├── ExileCore2.dll ├── ExileCore2.runtimeconfig.json ├── GameOffsets2.dll ├── ImGui.NET.dll ├── ItemFilterLibrary.deps.json ├── ItemFilterLibrary.dll ├── ItemFilterLibrary.runtimeconfig.json ├── JM.LinqFaster.dll ├── Loader.deps.json ├── Loader.dll ├── Loader.dll.config ├── Loader.exe ├── Loader.runtimeconfig.json ├── Microsoft.Build.Locator.dll ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll ├── Microsoft.CodeAnalysis.CSharp.dll ├── Microsoft.CodeAnalysis.Scripting.dll ├── Microsoft.CodeAnalysis.dll ├── MoreLinq.dll ├── NAudio.Asio.dll ├── NAudio.Core.dll ├── NAudio.Midi.dll ├── NAudio.Wasapi.dll ├── NAudio.WinForms.dll ├── NAudio.WinMM.dll ├── NAudio.dll ├── Newtonsoft.Json.dll ├── Plugins ├── Compiled │ ├── DevTree │ │ ├── DevTree.deps.json │ │ └── DevTree.dll │ └── PluginUpdater │ │ ├── LibGit2Sharp.dll │ │ ├── PluginUpdater.deps.json │ │ ├── PluginUpdater.dll │ │ └── git2-3f4182d.dll ├── exCore2.Plugin.Template.2.0.0.nupkg └── howto.txt ├── ProcessMemoryUtilities.dll ├── Serilog.Sinks.File.dll ├── Serilog.dll ├── SharpGen.Runtime.COM.dll ├── SharpGen.Runtime.dll ├── SixLabors.ImageSharp.dll ├── Sounds ├── alert.wav ├── attention.wav ├── beast.wav ├── bomb.wav ├── corrupted.wav ├── danger.wav ├── elemental.wav ├── physical.wav ├── treasure.wav └── volatile.wav ├── System.Diagnostics.EventLog.Messages.dll ├── System.Linq.Dynamic.Core.dll ├── System.Runtime.Caching.dll ├── Vanara.Core.dll ├── Vanara.PInvoke.ComDlg32.dll ├── Vanara.PInvoke.DwmApi.dll ├── Vanara.PInvoke.Gdi32.dll ├── Vanara.PInvoke.Kernel32.dll ├── Vanara.PInvoke.Multimedia.dll ├── Vanara.PInvoke.Shared.dll ├── Vanara.PInvoke.User32.dll ├── Vortice.D3DCompiler.dll ├── Vortice.DXGI.dll ├── Vortice.Direct3D11.dll ├── Vortice.DirectX.dll ├── Vortice.Mathematics.dll ├── cimgui.dll ├── fonts └── unifont.otf ├── sig.bin └── textures ├── Icons.png ├── directions.png ├── icon.ico ├── menu-background.png ├── missing_texture.png └── sprites.png /ClickableTransparentOverlay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/ClickableTransparentOverlay.dll -------------------------------------------------------------------------------- /ExileCore2.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0/win-x64", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": {}, 9 | ".NETCoreApp,Version=v8.0/win-x64": { 10 | "ExileCore2/1.0.0": { 11 | "dependencies": { 12 | "ClickableTransparentOverlay": "9.1.0", 13 | "GameOffsets2": "1.0.0", 14 | "ImGui.NET": "1.90.0.1", 15 | "LinqFaster": "1.0.0", 16 | "Microsoft.Build": "17.8.3", 17 | "Microsoft.Build.Framework": "17.8.3", 18 | "Microsoft.Build.Locator": "1.6.10", 19 | "Microsoft.Build.Tasks.Core": "17.8.3", 20 | "Microsoft.CodeAnalysis.CSharp.Scripting": "4.11.0", 21 | "NAudio": "2.2.1", 22 | "Newtonsoft.Json": "13.0.3", 23 | "ProcessMemoryUtilities.Net": "1.3.4", 24 | "Serilog": "3.1.1", 25 | "Serilog.Sinks.File": "5.0.0", 26 | "System.Runtime.Caching": "8.0.0", 27 | "Vanara.PInvoke.DwmApi": "3.4.17", 28 | "Vanara.PInvoke.Kernel32": "3.4.17", 29 | "Vanara.PInvoke.Multimedia": "3.4.17", 30 | "Vanara.PInvoke.User32": "3.4.17", 31 | "morelinq": "4.0.0" 32 | }, 33 | "runtime": { 34 | "ExileCore2.dll": {} 35 | } 36 | }, 37 | "ImGui.NET/1.90.0.1": { 38 | "dependencies": { 39 | "System.Buffers": "4.4.0", 40 | "System.Numerics.Vectors": "4.4.0", 41 | "System.Runtime.CompilerServices.Unsafe": "5.0.0" 42 | }, 43 | "runtime": { 44 | "lib/net6.0/ImGui.NET.dll": { 45 | "assemblyVersion": "1.90.0.1", 46 | "fileVersion": "1.90.0.1" 47 | } 48 | }, 49 | "native": { 50 | "runtimes/win-x64/native/cimgui.dll": { 51 | "fileVersion": "0.0.0.0" 52 | } 53 | } 54 | }, 55 | "LinqFaster/1.0.0": { 56 | "runtime": { 57 | "lib/netstandard2.0/JM.LinqFaster.dll": { 58 | "assemblyVersion": "0.1.0.0", 59 | "fileVersion": "0.1.0.0" 60 | } 61 | } 62 | }, 63 | "Microsoft.Build/17.8.3": { 64 | "dependencies": { 65 | "Microsoft.Build.Framework": "17.8.3", 66 | "Microsoft.NET.StringTools": "17.8.3", 67 | "System.Collections.Immutable": "8.0.0", 68 | "System.Configuration.ConfigurationManager": "8.0.0", 69 | "System.Reflection.Metadata": "8.0.0", 70 | "System.Reflection.MetadataLoadContext": "7.0.0", 71 | "System.Security.Principal.Windows": "5.0.0", 72 | "System.Threading.Tasks.Dataflow": "7.0.0" 73 | } 74 | }, 75 | "Microsoft.Build.Framework/17.8.3": {}, 76 | "Microsoft.Build.Locator/1.6.10": { 77 | "runtime": { 78 | "lib/net6.0/Microsoft.Build.Locator.dll": { 79 | "assemblyVersion": "1.0.0.0", 80 | "fileVersion": "1.6.10.57384" 81 | } 82 | } 83 | }, 84 | "Microsoft.Build.Tasks.Core/17.8.3": { 85 | "dependencies": { 86 | "Microsoft.Build.Framework": "17.8.3", 87 | "Microsoft.Build.Utilities.Core": "17.8.3", 88 | "Microsoft.NET.StringTools": "17.8.3", 89 | "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.2.2146", 90 | "System.CodeDom": "7.0.0", 91 | "System.Collections.Immutable": "8.0.0", 92 | "System.Configuration.ConfigurationManager": "8.0.0", 93 | "System.Resources.Extensions": "7.0.0", 94 | "System.Security.Cryptography.Pkcs": "7.0.2", 95 | "System.Security.Cryptography.Xml": "7.0.1" 96 | } 97 | }, 98 | "Microsoft.Build.Utilities.Core/17.8.3": { 99 | "dependencies": { 100 | "Microsoft.Build.Framework": "17.8.3", 101 | "Microsoft.NET.StringTools": "17.8.3", 102 | "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.2.2146", 103 | "System.Collections.Immutable": "8.0.0", 104 | "System.Configuration.ConfigurationManager": "8.0.0" 105 | } 106 | }, 107 | "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, 108 | "Microsoft.CodeAnalysis.Common/4.11.0": { 109 | "dependencies": { 110 | "Microsoft.CodeAnalysis.Analyzers": "3.3.4", 111 | "System.Collections.Immutable": "8.0.0", 112 | "System.Reflection.Metadata": "8.0.0" 113 | }, 114 | "runtime": { 115 | "lib/net8.0/Microsoft.CodeAnalysis.dll": { 116 | "assemblyVersion": "4.11.0.0", 117 | "fileVersion": "4.1100.24.37604" 118 | } 119 | } 120 | }, 121 | "Microsoft.CodeAnalysis.CSharp/4.11.0": { 122 | "dependencies": { 123 | "Microsoft.CodeAnalysis.Analyzers": "3.3.4", 124 | "Microsoft.CodeAnalysis.Common": "4.11.0", 125 | "System.Collections.Immutable": "8.0.0", 126 | "System.Reflection.Metadata": "8.0.0" 127 | }, 128 | "runtime": { 129 | "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll": { 130 | "assemblyVersion": "4.11.0.0", 131 | "fileVersion": "4.1100.24.37604" 132 | } 133 | } 134 | }, 135 | "Microsoft.CodeAnalysis.CSharp.Scripting/4.11.0": { 136 | "dependencies": { 137 | "Microsoft.CSharp": "4.7.0", 138 | "Microsoft.CodeAnalysis.Analyzers": "3.3.4", 139 | "Microsoft.CodeAnalysis.CSharp": "4.11.0", 140 | "Microsoft.CodeAnalysis.Common": "4.11.0", 141 | "Microsoft.CodeAnalysis.Scripting.Common": "4.11.0", 142 | "System.Collections.Immutable": "8.0.0", 143 | "System.Reflection.Metadata": "8.0.0" 144 | }, 145 | "runtime": { 146 | "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { 147 | "assemblyVersion": "4.11.0.0", 148 | "fileVersion": "4.1100.24.37604" 149 | } 150 | } 151 | }, 152 | "Microsoft.CodeAnalysis.Scripting.Common/4.11.0": { 153 | "dependencies": { 154 | "Microsoft.CodeAnalysis.Analyzers": "3.3.4", 155 | "Microsoft.CodeAnalysis.Common": "4.11.0", 156 | "System.Collections.Immutable": "8.0.0", 157 | "System.Reflection.Metadata": "8.0.0" 158 | }, 159 | "runtime": { 160 | "lib/net8.0/Microsoft.CodeAnalysis.Scripting.dll": { 161 | "assemblyVersion": "4.11.0.0", 162 | "fileVersion": "4.1100.24.37604" 163 | } 164 | } 165 | }, 166 | "Microsoft.CSharp/4.7.0": {}, 167 | "Microsoft.NET.StringTools/17.8.3": {}, 168 | "Microsoft.NETCore.Platforms/5.0.0": {}, 169 | "Microsoft.VisualStudio.Setup.Configuration.Interop/3.2.2146": {}, 170 | "Microsoft.Win32.Registry/5.0.0": { 171 | "dependencies": { 172 | "System.Security.AccessControl": "5.0.0", 173 | "System.Security.Principal.Windows": "5.0.0" 174 | } 175 | }, 176 | "morelinq/4.0.0": { 177 | "runtime": { 178 | "lib/net6.0/MoreLinq.dll": { 179 | "assemblyVersion": "4.0.0.0", 180 | "fileVersion": "4.0.0.0" 181 | } 182 | } 183 | }, 184 | "NAudio/2.2.1": { 185 | "dependencies": { 186 | "NAudio.Asio": "2.2.1", 187 | "NAudio.Core": "2.2.1", 188 | "NAudio.Midi": "2.2.1", 189 | "NAudio.Wasapi": "2.2.1", 190 | "NAudio.WinForms": "2.2.1", 191 | "NAudio.WinMM": "2.2.1" 192 | }, 193 | "runtime": { 194 | "lib/net6.0-windows7.0/NAudio.dll": { 195 | "assemblyVersion": "2.2.1.0", 196 | "fileVersion": "2.2.1.0" 197 | } 198 | } 199 | }, 200 | "NAudio.Asio/2.2.1": { 201 | "dependencies": { 202 | "Microsoft.Win32.Registry": "5.0.0", 203 | "NAudio.Core": "2.2.1" 204 | }, 205 | "runtime": { 206 | "lib/netstandard2.0/NAudio.Asio.dll": { 207 | "assemblyVersion": "2.2.1.0", 208 | "fileVersion": "2.2.1.0" 209 | } 210 | } 211 | }, 212 | "NAudio.Core/2.2.1": { 213 | "runtime": { 214 | "lib/netstandard2.0/NAudio.Core.dll": { 215 | "assemblyVersion": "2.2.1.0", 216 | "fileVersion": "2.2.1.0" 217 | } 218 | } 219 | }, 220 | "NAudio.Midi/2.2.1": { 221 | "dependencies": { 222 | "NAudio.Core": "2.2.1" 223 | }, 224 | "runtime": { 225 | "lib/netstandard2.0/NAudio.Midi.dll": { 226 | "assemblyVersion": "2.2.1.0", 227 | "fileVersion": "2.2.1.0" 228 | } 229 | } 230 | }, 231 | "NAudio.Wasapi/2.2.1": { 232 | "dependencies": { 233 | "NAudio.Core": "2.2.1" 234 | }, 235 | "runtime": { 236 | "lib/netstandard2.0/NAudio.Wasapi.dll": { 237 | "assemblyVersion": "2.2.1.0", 238 | "fileVersion": "2.2.1.0" 239 | } 240 | } 241 | }, 242 | "NAudio.WinForms/2.2.1": { 243 | "dependencies": { 244 | "NAudio.WinMM": "2.2.1" 245 | }, 246 | "runtime": { 247 | "lib/netcoreapp3.1/NAudio.WinForms.dll": { 248 | "assemblyVersion": "2.2.1.0", 249 | "fileVersion": "2.2.1.0" 250 | } 251 | } 252 | }, 253 | "NAudio.WinMM/2.2.1": { 254 | "dependencies": { 255 | "Microsoft.Win32.Registry": "5.0.0", 256 | "NAudio.Core": "2.2.1" 257 | }, 258 | "runtime": { 259 | "lib/netstandard2.0/NAudio.WinMM.dll": { 260 | "assemblyVersion": "2.2.1.0", 261 | "fileVersion": "2.2.1.0" 262 | } 263 | } 264 | }, 265 | "Newtonsoft.Json/13.0.3": { 266 | "runtime": { 267 | "lib/net6.0/Newtonsoft.Json.dll": { 268 | "assemblyVersion": "13.0.0.0", 269 | "fileVersion": "13.0.3.27908" 270 | } 271 | } 272 | }, 273 | "ProcessMemoryUtilities.Net/1.3.4": { 274 | "runtime": { 275 | "lib/netstandard2.0/ProcessMemoryUtilities.dll": { 276 | "assemblyVersion": "1.3.4.0", 277 | "fileVersion": "1.3.4.0" 278 | } 279 | } 280 | }, 281 | "Serilog/3.1.1": { 282 | "runtime": { 283 | "lib/net7.0/Serilog.dll": { 284 | "assemblyVersion": "2.0.0.0", 285 | "fileVersion": "3.1.1.0" 286 | } 287 | } 288 | }, 289 | "Serilog.Sinks.File/5.0.0": { 290 | "dependencies": { 291 | "Serilog": "3.1.1" 292 | }, 293 | "runtime": { 294 | "lib/net5.0/Serilog.Sinks.File.dll": { 295 | "assemblyVersion": "5.0.0.0", 296 | "fileVersion": "5.0.0.0" 297 | } 298 | } 299 | }, 300 | "SharpGen.Runtime/2.1.2-beta": { 301 | "runtime": { 302 | "lib/net8.0/SharpGen.Runtime.dll": { 303 | "assemblyVersion": "2.1.2.0", 304 | "fileVersion": "2.1.2.0" 305 | } 306 | } 307 | }, 308 | "SharpGen.Runtime.COM/2.1.2-beta": { 309 | "dependencies": { 310 | "SharpGen.Runtime": "2.1.2-beta" 311 | }, 312 | "runtime": { 313 | "lib/net8.0/SharpGen.Runtime.COM.dll": { 314 | "assemblyVersion": "2.1.2.0", 315 | "fileVersion": "2.1.2.0" 316 | } 317 | } 318 | }, 319 | "SixLabors.ImageSharp/2.1.3": { 320 | "dependencies": { 321 | "System.Runtime.CompilerServices.Unsafe": "5.0.0", 322 | "System.Text.Encoding.CodePages": "5.0.0" 323 | }, 324 | "runtime": { 325 | "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": { 326 | "assemblyVersion": "2.0.0.0", 327 | "fileVersion": "2.1.3.0" 328 | } 329 | } 330 | }, 331 | "System.Buffers/4.4.0": {}, 332 | "System.CodeDom/7.0.0": {}, 333 | "System.Collections.Immutable/8.0.0": {}, 334 | "System.Configuration.ConfigurationManager/8.0.0": { 335 | "dependencies": { 336 | "System.Diagnostics.EventLog": "8.0.0", 337 | "System.Security.Cryptography.ProtectedData": "8.0.0" 338 | } 339 | }, 340 | "System.Diagnostics.EventLog/8.0.0": { 341 | "runtime": { 342 | "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { 343 | "assemblyVersion": "8.0.0.0", 344 | "fileVersion": "8.0.23.53103" 345 | } 346 | } 347 | }, 348 | "System.Formats.Asn1/7.0.0": {}, 349 | "System.Numerics.Vectors/4.4.0": {}, 350 | "System.Reflection.Metadata/8.0.0": { 351 | "dependencies": { 352 | "System.Collections.Immutable": "8.0.0" 353 | } 354 | }, 355 | "System.Reflection.MetadataLoadContext/7.0.0": { 356 | "dependencies": { 357 | "System.Collections.Immutable": "8.0.0", 358 | "System.Reflection.Metadata": "8.0.0" 359 | } 360 | }, 361 | "System.Resources.Extensions/7.0.0": {}, 362 | "System.Runtime.Caching/8.0.0": { 363 | "dependencies": { 364 | "System.Configuration.ConfigurationManager": "8.0.0" 365 | }, 366 | "runtime": { 367 | "runtimes/win/lib/net8.0/System.Runtime.Caching.dll": { 368 | "assemblyVersion": "8.0.0.0", 369 | "fileVersion": "8.0.23.53103" 370 | } 371 | } 372 | }, 373 | "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, 374 | "System.Security.AccessControl/5.0.0": { 375 | "dependencies": { 376 | "Microsoft.NETCore.Platforms": "5.0.0", 377 | "System.Security.Principal.Windows": "5.0.0" 378 | } 379 | }, 380 | "System.Security.Cryptography.Pkcs/7.0.2": { 381 | "dependencies": { 382 | "System.Formats.Asn1": "7.0.0" 383 | } 384 | }, 385 | "System.Security.Cryptography.ProtectedData/8.0.0": {}, 386 | "System.Security.Cryptography.Xml/7.0.1": { 387 | "dependencies": { 388 | "System.Security.Cryptography.Pkcs": "7.0.2" 389 | } 390 | }, 391 | "System.Security.Principal.Windows/5.0.0": {}, 392 | "System.Text.Encoding.CodePages/5.0.0": { 393 | "dependencies": { 394 | "Microsoft.NETCore.Platforms": "5.0.0" 395 | } 396 | }, 397 | "System.Threading.Tasks.Dataflow/7.0.0": {}, 398 | "Vanara.Core/3.4.17": { 399 | "runtime": { 400 | "lib/net6.0/Vanara.Core.dll": { 401 | "assemblyVersion": "3.4.17.0", 402 | "fileVersion": "3.4.17.0" 403 | } 404 | } 405 | }, 406 | "Vanara.PInvoke.ComDlg32/3.4.17": { 407 | "dependencies": { 408 | "Vanara.Core": "3.4.17", 409 | "Vanara.PInvoke.Kernel32": "3.4.17", 410 | "Vanara.PInvoke.Shared": "3.4.17", 411 | "Vanara.PInvoke.User32": "3.4.17" 412 | }, 413 | "runtime": { 414 | "lib/net6.0/Vanara.PInvoke.ComDlg32.dll": { 415 | "assemblyVersion": "3.4.17.0", 416 | "fileVersion": "3.4.17.0" 417 | } 418 | } 419 | }, 420 | "Vanara.PInvoke.DwmApi/3.4.17": { 421 | "dependencies": { 422 | "Vanara.Core": "3.4.17", 423 | "Vanara.PInvoke.Gdi32": "3.4.17", 424 | "Vanara.PInvoke.Shared": "3.4.17" 425 | }, 426 | "runtime": { 427 | "lib/net6.0/Vanara.PInvoke.DwmApi.dll": { 428 | "assemblyVersion": "3.4.17.0", 429 | "fileVersion": "3.4.17.0" 430 | } 431 | } 432 | }, 433 | "Vanara.PInvoke.Gdi32/3.4.17": { 434 | "dependencies": { 435 | "Vanara.Core": "3.4.17", 436 | "Vanara.PInvoke.Shared": "3.4.17" 437 | }, 438 | "runtime": { 439 | "lib/net6.0/Vanara.PInvoke.Gdi32.dll": { 440 | "assemblyVersion": "3.4.17.0", 441 | "fileVersion": "3.4.17.0" 442 | } 443 | } 444 | }, 445 | "Vanara.PInvoke.Kernel32/3.4.17": { 446 | "dependencies": { 447 | "Vanara.Core": "3.4.17", 448 | "Vanara.PInvoke.Shared": "3.4.17" 449 | }, 450 | "runtime": { 451 | "lib/net6.0/Vanara.PInvoke.Kernel32.dll": { 452 | "assemblyVersion": "3.4.17.0", 453 | "fileVersion": "3.4.17.0" 454 | } 455 | } 456 | }, 457 | "Vanara.PInvoke.Multimedia/3.4.17": { 458 | "dependencies": { 459 | "Vanara.Core": "3.4.17", 460 | "Vanara.PInvoke.ComDlg32": "3.4.17", 461 | "Vanara.PInvoke.Gdi32": "3.4.17", 462 | "Vanara.PInvoke.Kernel32": "3.4.17", 463 | "Vanara.PInvoke.Shared": "3.4.17" 464 | }, 465 | "runtime": { 466 | "lib/net6.0/Vanara.PInvoke.Multimedia.dll": { 467 | "assemblyVersion": "3.4.17.0", 468 | "fileVersion": "3.4.17.0" 469 | } 470 | } 471 | }, 472 | "Vanara.PInvoke.Shared/3.4.17": { 473 | "dependencies": { 474 | "Microsoft.Win32.Registry": "5.0.0", 475 | "Vanara.Core": "3.4.17" 476 | }, 477 | "runtime": { 478 | "lib/net6.0/Vanara.PInvoke.Shared.dll": { 479 | "assemblyVersion": "3.4.17.0", 480 | "fileVersion": "3.4.17.0" 481 | } 482 | } 483 | }, 484 | "Vanara.PInvoke.User32/3.4.17": { 485 | "dependencies": { 486 | "Vanara.Core": "3.4.17", 487 | "Vanara.PInvoke.Gdi32": "3.4.17", 488 | "Vanara.PInvoke.Kernel32": "3.4.17", 489 | "Vanara.PInvoke.Shared": "3.4.17" 490 | }, 491 | "runtime": { 492 | "lib/net6.0/Vanara.PInvoke.User32.dll": { 493 | "assemblyVersion": "3.4.17.0", 494 | "fileVersion": "3.4.17.0" 495 | } 496 | } 497 | }, 498 | "Vortice.D3DCompiler/3.3.4": { 499 | "dependencies": { 500 | "SharpGen.Runtime": "2.1.2-beta", 501 | "SharpGen.Runtime.COM": "2.1.2-beta", 502 | "Vortice.DirectX": "3.3.4", 503 | "Vortice.Mathematics": "1.7.2" 504 | }, 505 | "runtime": { 506 | "lib/net8.0/Vortice.D3DCompiler.dll": { 507 | "assemblyVersion": "3.3.4.0", 508 | "fileVersion": "3.3.4.0" 509 | } 510 | } 511 | }, 512 | "Vortice.Direct3D11/3.3.4": { 513 | "dependencies": { 514 | "SharpGen.Runtime": "2.1.2-beta", 515 | "SharpGen.Runtime.COM": "2.1.2-beta", 516 | "Vortice.DXGI": "3.3.4", 517 | "Vortice.Mathematics": "1.7.2" 518 | }, 519 | "runtime": { 520 | "lib/net8.0/Vortice.Direct3D11.dll": { 521 | "assemblyVersion": "3.3.4.0", 522 | "fileVersion": "3.3.4.0" 523 | } 524 | } 525 | }, 526 | "Vortice.DirectX/3.3.4": { 527 | "dependencies": { 528 | "SharpGen.Runtime": "2.1.2-beta", 529 | "SharpGen.Runtime.COM": "2.1.2-beta", 530 | "Vortice.Mathematics": "1.7.2" 531 | }, 532 | "runtime": { 533 | "lib/net8.0/Vortice.DirectX.dll": { 534 | "assemblyVersion": "3.3.4.0", 535 | "fileVersion": "3.3.4.0" 536 | } 537 | } 538 | }, 539 | "Vortice.DXGI/3.3.4": { 540 | "dependencies": { 541 | "SharpGen.Runtime": "2.1.2-beta", 542 | "SharpGen.Runtime.COM": "2.1.2-beta", 543 | "Vortice.DirectX": "3.3.4", 544 | "Vortice.Mathematics": "1.7.2" 545 | }, 546 | "runtime": { 547 | "lib/net8.0/Vortice.DXGI.dll": { 548 | "assemblyVersion": "3.3.4.0", 549 | "fileVersion": "3.3.4.0" 550 | } 551 | } 552 | }, 553 | "Vortice.Mathematics/1.7.2": { 554 | "runtime": { 555 | "lib/net8.0/Vortice.Mathematics.dll": { 556 | "assemblyVersion": "1.7.2.0", 557 | "fileVersion": "1.7.2.0" 558 | } 559 | } 560 | }, 561 | "ClickableTransparentOverlay/9.1.0": { 562 | "dependencies": { 563 | "ImGui.NET": "1.90.0.1", 564 | "SixLabors.ImageSharp": "2.1.3", 565 | "Vanara.PInvoke.DwmApi": "3.4.17", 566 | "Vanara.PInvoke.Kernel32": "3.4.17", 567 | "Vanara.PInvoke.User32": "3.4.17", 568 | "Vortice.D3DCompiler": "3.3.4", 569 | "Vortice.Direct3D11": "3.3.4" 570 | }, 571 | "runtime": { 572 | "ClickableTransparentOverlay.dll": {} 573 | } 574 | }, 575 | "GameOffsets2/1.0.0": { 576 | "runtime": { 577 | "GameOffsets2.dll": {} 578 | } 579 | } 580 | } 581 | }, 582 | "libraries": { 583 | "ExileCore2/1.0.0": { 584 | "type": "project", 585 | "serviceable": false, 586 | "sha512": "" 587 | }, 588 | "ImGui.NET/1.90.0.1": { 589 | "type": "package", 590 | "serviceable": true, 591 | "sha512": "sha512-ZhEN7SKx5e9bbWY5BR2tNdbl7W4cJXaESwFRGo6p2pUSM9Y8yxtWq2zM4Qf8a8HYCmblHuFWtp8YcZiWlcJ3ZQ==", 592 | "path": "imgui.net/1.90.0.1", 593 | "hashPath": "imgui.net.1.90.0.1.nupkg.sha512" 594 | }, 595 | "LinqFaster/1.0.0": { 596 | "type": "package", 597 | "serviceable": true, 598 | "sha512": "sha512-+s29tEAu8bAXqnDeWhYNrhUGDiSPzf2RsZgvGsNdMgJBa3ywp5zJzkf8EBAgd6h7I0GpG6Zw/K1SENt9jD09mA==", 599 | "path": "linqfaster/1.0.0", 600 | "hashPath": "linqfaster.1.0.0.nupkg.sha512" 601 | }, 602 | "Microsoft.Build/17.8.3": { 603 | "type": "package", 604 | "serviceable": true, 605 | "sha512": "sha512-jOxP2DrBZb2zuDO5M8LfI50SCdXlahgUHJ6mH0jz4OBID0F9o+DVggk0CPAONmcbUPo2SsQCFkMaxmHkKLj99Q==", 606 | "path": "microsoft.build/17.8.3", 607 | "hashPath": "microsoft.build.17.8.3.nupkg.sha512" 608 | }, 609 | "Microsoft.Build.Framework/17.8.3": { 610 | "type": "package", 611 | "serviceable": true, 612 | "sha512": "sha512-NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", 613 | "path": "microsoft.build.framework/17.8.3", 614 | "hashPath": "microsoft.build.framework.17.8.3.nupkg.sha512" 615 | }, 616 | "Microsoft.Build.Locator/1.6.10": { 617 | "type": "package", 618 | "serviceable": true, 619 | "sha512": "sha512-DJhCkTGqy1LMJzEmG/2qxRTMHwdPc3WdVoGQI5o5mKHVo4dsHrCMLIyruwU/NSvPNSdvONlaf7jdFXnAMuxAuA==", 620 | "path": "microsoft.build.locator/1.6.10", 621 | "hashPath": "microsoft.build.locator.1.6.10.nupkg.sha512" 622 | }, 623 | "Microsoft.Build.Tasks.Core/17.8.3": { 624 | "type": "package", 625 | "serviceable": true, 626 | "sha512": "sha512-TTDmyo4uMUGRRWK6UpGqLlOVv1aJFIn6w+0UN1YsS204MGbSbI6T7E23JjsH0/Ef24TBVXjbU1hpmaq1ty5fGQ==", 627 | "path": "microsoft.build.tasks.core/17.8.3", 628 | "hashPath": "microsoft.build.tasks.core.17.8.3.nupkg.sha512" 629 | }, 630 | "Microsoft.Build.Utilities.Core/17.8.3": { 631 | "type": "package", 632 | "serviceable": true, 633 | "sha512": "sha512-ex8Sjx02q0FmForLRFItB82sJx5s2JRWIpJgYDW1g7xLUoFlKLoNp67UwS5xN8YcYBkT7vRxXeYx/dQ96KaWtg==", 634 | "path": "microsoft.build.utilities.core/17.8.3", 635 | "hashPath": "microsoft.build.utilities.core.17.8.3.nupkg.sha512" 636 | }, 637 | "Microsoft.CodeAnalysis.Analyzers/3.3.4": { 638 | "type": "package", 639 | "serviceable": true, 640 | "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", 641 | "path": "microsoft.codeanalysis.analyzers/3.3.4", 642 | "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" 643 | }, 644 | "Microsoft.CodeAnalysis.Common/4.11.0": { 645 | "type": "package", 646 | "serviceable": true, 647 | "sha512": "sha512-djf8ujmqYImFgB04UGtcsEhHrzVqzHowS+EEl/Yunc5LdrYrZhGBWUTXoCF0NzYXJxtfuD+UVQarWpvrNc94Qg==", 648 | "path": "microsoft.codeanalysis.common/4.11.0", 649 | "hashPath": "microsoft.codeanalysis.common.4.11.0.nupkg.sha512" 650 | }, 651 | "Microsoft.CodeAnalysis.CSharp/4.11.0": { 652 | "type": "package", 653 | "serviceable": true, 654 | "sha512": "sha512-6XYi2EusI8JT4y2l/F3VVVS+ISoIX9nqHsZRaG6W5aFeJ5BEuBosHfT/ABb73FN0RZ1Z3cj2j7cL28SToJPXOw==", 655 | "path": "microsoft.codeanalysis.csharp/4.11.0", 656 | "hashPath": "microsoft.codeanalysis.csharp.4.11.0.nupkg.sha512" 657 | }, 658 | "Microsoft.CodeAnalysis.CSharp.Scripting/4.11.0": { 659 | "type": "package", 660 | "serviceable": true, 661 | "sha512": "sha512-sNeVeHfGHEPtxYGQIP+0BSTSBuv+dkWP5HEc1FstJpyYlibqKOmFm3y2j1AwEx9sKoRTs01092yrTH9BwZsxFQ==", 662 | "path": "microsoft.codeanalysis.csharp.scripting/4.11.0", 663 | "hashPath": "microsoft.codeanalysis.csharp.scripting.4.11.0.nupkg.sha512" 664 | }, 665 | "Microsoft.CodeAnalysis.Scripting.Common/4.11.0": { 666 | "type": "package", 667 | "serviceable": true, 668 | "sha512": "sha512-UHZIAKQcLB00N7AvMoyEYLw8qvFmGcKffEm/M2dEqYz2TWUtQW2j0+nGglbt9VwOId6TrDZGQlGjX90VNFak/w==", 669 | "path": "microsoft.codeanalysis.scripting.common/4.11.0", 670 | "hashPath": "microsoft.codeanalysis.scripting.common.4.11.0.nupkg.sha512" 671 | }, 672 | "Microsoft.CSharp/4.7.0": { 673 | "type": "package", 674 | "serviceable": true, 675 | "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", 676 | "path": "microsoft.csharp/4.7.0", 677 | "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" 678 | }, 679 | "Microsoft.NET.StringTools/17.8.3": { 680 | "type": "package", 681 | "serviceable": true, 682 | "sha512": "sha512-y6DiuacjlIfXH3XVQG5htf+4oheinZAo7sHbITB3z7yCXQec48f9ZhGSXkr+xn1bfl73Yc3ZQEW2peJ5X68AvQ==", 683 | "path": "microsoft.net.stringtools/17.8.3", 684 | "hashPath": "microsoft.net.stringtools.17.8.3.nupkg.sha512" 685 | }, 686 | "Microsoft.NETCore.Platforms/5.0.0": { 687 | "type": "package", 688 | "serviceable": true, 689 | "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", 690 | "path": "microsoft.netcore.platforms/5.0.0", 691 | "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" 692 | }, 693 | "Microsoft.VisualStudio.Setup.Configuration.Interop/3.2.2146": { 694 | "type": "package", 695 | "serviceable": true, 696 | "sha512": "sha512-gMq8uGy8zTIp0kQGTI45buZC3JOStGJyjGD8gksskk83aQISW65IESErLE/WDT7Bdy+QWbdUi7QyO1LEzUSOFA==", 697 | "path": "microsoft.visualstudio.setup.configuration.interop/3.2.2146", 698 | "hashPath": "microsoft.visualstudio.setup.configuration.interop.3.2.2146.nupkg.sha512" 699 | }, 700 | "Microsoft.Win32.Registry/5.0.0": { 701 | "type": "package", 702 | "serviceable": true, 703 | "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", 704 | "path": "microsoft.win32.registry/5.0.0", 705 | "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" 706 | }, 707 | "morelinq/4.0.0": { 708 | "type": "package", 709 | "serviceable": true, 710 | "sha512": "sha512-MUyjssR1HPf2eNFYj/j170VlDRes5Jl7/DEC5WfN5LolA3pjhbCe2EIp4bcNpNENtMRenlj2nRD+D5KQmk4TMQ==", 711 | "path": "morelinq/4.0.0", 712 | "hashPath": "morelinq.4.0.0.nupkg.sha512" 713 | }, 714 | "NAudio/2.2.1": { 715 | "type": "package", 716 | "serviceable": true, 717 | "sha512": "sha512-c0DzwiyyklM0TP39Y7RObwO3QkWecgM6H60ikiEnsV/aEAJPbj5MFCLaD8BSfKuZe0HGuh9GRGWWlJmSxDc9MA==", 718 | "path": "naudio/2.2.1", 719 | "hashPath": "naudio.2.2.1.nupkg.sha512" 720 | }, 721 | "NAudio.Asio/2.2.1": { 722 | "type": "package", 723 | "serviceable": true, 724 | "sha512": "sha512-hQglyOT5iT3XuGpBP8ZG0+aoqwRfidHjTNehpoWwX0g6KJEgtH2VaqM2nuJ2mheKZa/IBqB4YQTZVvrIapzfOA==", 725 | "path": "naudio.asio/2.2.1", 726 | "hashPath": "naudio.asio.2.2.1.nupkg.sha512" 727 | }, 728 | "NAudio.Core/2.2.1": { 729 | "type": "package", 730 | "serviceable": true, 731 | "sha512": "sha512-GgkdP6K/7FqXFo7uHvoqGZTJvW4z8g2IffhOO4JHaLzKCdDOUEzVKtveoZkCuUX8eV2HAINqi7VFqlFndrnz/g==", 732 | "path": "naudio.core/2.2.1", 733 | "hashPath": "naudio.core.2.2.1.nupkg.sha512" 734 | }, 735 | "NAudio.Midi/2.2.1": { 736 | "type": "package", 737 | "serviceable": true, 738 | "sha512": "sha512-6r23ylGo5aeP02WFXsPquz0T0hFJWyh+7t++tz19tc3Kr38NHm+Z9j+FiAv+xkH8tZqXJqus9Q8p6u7bidIgbw==", 739 | "path": "naudio.midi/2.2.1", 740 | "hashPath": "naudio.midi.2.2.1.nupkg.sha512" 741 | }, 742 | "NAudio.Wasapi/2.2.1": { 743 | "type": "package", 744 | "serviceable": true, 745 | "sha512": "sha512-lFfXoqacZZe0WqNChJgGYI+XV/n/61LzPHT3C1CJp4khoxeo2sziyX5wzNYWeCMNbsWxFvT3b3iXeY1UYjBhZw==", 746 | "path": "naudio.wasapi/2.2.1", 747 | "hashPath": "naudio.wasapi.2.2.1.nupkg.sha512" 748 | }, 749 | "NAudio.WinForms/2.2.1": { 750 | "type": "package", 751 | "serviceable": true, 752 | "sha512": "sha512-DlDkewY1myY0A+3NrYRJD+MZhZV0yy1mNF6dckB27IQ9XCs/My5Ip8BZcoSHOsaPSe2GAjvoaDnk6N9w8xTv7w==", 753 | "path": "naudio.winforms/2.2.1", 754 | "hashPath": "naudio.winforms.2.2.1.nupkg.sha512" 755 | }, 756 | "NAudio.WinMM/2.2.1": { 757 | "type": "package", 758 | "serviceable": true, 759 | "sha512": "sha512-xFHRFwH4x6aq3IxRbewvO33ugJRvZFEOfO62i7uQJRUNW2cnu6BeBTHUS0JD5KBucZbHZaYqxQG8dwZ47ezQuQ==", 760 | "path": "naudio.winmm/2.2.1", 761 | "hashPath": "naudio.winmm.2.2.1.nupkg.sha512" 762 | }, 763 | "Newtonsoft.Json/13.0.3": { 764 | "type": "package", 765 | "serviceable": true, 766 | "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", 767 | "path": "newtonsoft.json/13.0.3", 768 | "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" 769 | }, 770 | "ProcessMemoryUtilities.Net/1.3.4": { 771 | "type": "package", 772 | "serviceable": true, 773 | "sha512": "sha512-rByxPnSJOKCro7E8hFEFU58VKGu6rK+BLMJMlbh7PO+MyiP7hXWLASColOuWw7NvZ2P3pNOCtchQ38VpNJ7Mhg==", 774 | "path": "processmemoryutilities.net/1.3.4", 775 | "hashPath": "processmemoryutilities.net.1.3.4.nupkg.sha512" 776 | }, 777 | "Serilog/3.1.1": { 778 | "type": "package", 779 | "serviceable": true, 780 | "sha512": "sha512-P6G4/4Kt9bT635bhuwdXlJ2SCqqn2nhh4gqFqQueCOr9bK/e7W9ll/IoX1Ter948cV2Z/5+5v8pAfJYUISY03A==", 781 | "path": "serilog/3.1.1", 782 | "hashPath": "serilog.3.1.1.nupkg.sha512" 783 | }, 784 | "Serilog.Sinks.File/5.0.0": { 785 | "type": "package", 786 | "serviceable": true, 787 | "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", 788 | "path": "serilog.sinks.file/5.0.0", 789 | "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" 790 | }, 791 | "SharpGen.Runtime/2.1.2-beta": { 792 | "type": "package", 793 | "serviceable": true, 794 | "sha512": "sha512-nqZAjfEG1jX1ivvdZLsi6Pkt0DiOJyuOgRgldNFsmjXFPhxUbXQibofLSwuDZidL2kkmtTF8qLoRIeqeVdXgYw==", 795 | "path": "sharpgen.runtime/2.1.2-beta", 796 | "hashPath": "sharpgen.runtime.2.1.2-beta.nupkg.sha512" 797 | }, 798 | "SharpGen.Runtime.COM/2.1.2-beta": { 799 | "type": "package", 800 | "serviceable": true, 801 | "sha512": "sha512-HBCrb6HfnUWx9v5/GjJeBr5DuodZLnHlFQQYXPrQs1Hbe1c6Wd0uCXf+SJp4hW8fQNxjXEu0FgiyHGlA/SRzRw==", 802 | "path": "sharpgen.runtime.com/2.1.2-beta", 803 | "hashPath": "sharpgen.runtime.com.2.1.2-beta.nupkg.sha512" 804 | }, 805 | "SixLabors.ImageSharp/2.1.3": { 806 | "type": "package", 807 | "serviceable": true, 808 | "sha512": "sha512-8yonNRWX3vUE9k29ta0Hbfa0AEc0hbDjSH/nZ3vOTJEXmY6hLnGsjDKoz96Z+AgOsrdkAu6PdL/Ebaf70aitzw==", 809 | "path": "sixlabors.imagesharp/2.1.3", 810 | "hashPath": "sixlabors.imagesharp.2.1.3.nupkg.sha512" 811 | }, 812 | "System.Buffers/4.4.0": { 813 | "type": "package", 814 | "serviceable": true, 815 | "sha512": "sha512-AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==", 816 | "path": "system.buffers/4.4.0", 817 | "hashPath": "system.buffers.4.4.0.nupkg.sha512" 818 | }, 819 | "System.CodeDom/7.0.0": { 820 | "type": "package", 821 | "serviceable": true, 822 | "sha512": "sha512-GLltyqEsE5/3IE+zYRP5sNa1l44qKl9v+bfdMcwg+M9qnQf47wK3H0SUR/T+3N4JEQXF3vV4CSuuo0rsg+nq2A==", 823 | "path": "system.codedom/7.0.0", 824 | "hashPath": "system.codedom.7.0.0.nupkg.sha512" 825 | }, 826 | "System.Collections.Immutable/8.0.0": { 827 | "type": "package", 828 | "serviceable": true, 829 | "sha512": "sha512-AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==", 830 | "path": "system.collections.immutable/8.0.0", 831 | "hashPath": "system.collections.immutable.8.0.0.nupkg.sha512" 832 | }, 833 | "System.Configuration.ConfigurationManager/8.0.0": { 834 | "type": "package", 835 | "serviceable": true, 836 | "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", 837 | "path": "system.configuration.configurationmanager/8.0.0", 838 | "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" 839 | }, 840 | "System.Diagnostics.EventLog/8.0.0": { 841 | "type": "package", 842 | "serviceable": true, 843 | "sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==", 844 | "path": "system.diagnostics.eventlog/8.0.0", 845 | "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512" 846 | }, 847 | "System.Formats.Asn1/7.0.0": { 848 | "type": "package", 849 | "serviceable": true, 850 | "sha512": "sha512-+nfpV0afLmvJW8+pLlHxRjz3oZJw4fkyU9MMEaMhCsHi/SN9bGF9q79ROubDiwTiCHezmK0uCWkPP7tGFP/4yg==", 851 | "path": "system.formats.asn1/7.0.0", 852 | "hashPath": "system.formats.asn1.7.0.0.nupkg.sha512" 853 | }, 854 | "System.Numerics.Vectors/4.4.0": { 855 | "type": "package", 856 | "serviceable": true, 857 | "sha512": "sha512-UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ==", 858 | "path": "system.numerics.vectors/4.4.0", 859 | "hashPath": "system.numerics.vectors.4.4.0.nupkg.sha512" 860 | }, 861 | "System.Reflection.Metadata/8.0.0": { 862 | "type": "package", 863 | "serviceable": true, 864 | "sha512": "sha512-ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==", 865 | "path": "system.reflection.metadata/8.0.0", 866 | "hashPath": "system.reflection.metadata.8.0.0.nupkg.sha512" 867 | }, 868 | "System.Reflection.MetadataLoadContext/7.0.0": { 869 | "type": "package", 870 | "serviceable": true, 871 | "sha512": "sha512-z9PvtMJra5hK8n+g0wmPtaG7HQRZpTmIPRw5Z0LEemlcdQMHuTD5D7OAY/fZuuz1L9db++QOcDF0gJTLpbMtZQ==", 872 | "path": "system.reflection.metadataloadcontext/7.0.0", 873 | "hashPath": "system.reflection.metadataloadcontext.7.0.0.nupkg.sha512" 874 | }, 875 | "System.Resources.Extensions/7.0.0": { 876 | "type": "package", 877 | "serviceable": true, 878 | "sha512": "sha512-65ufm9ABXvxRkQ//hMcUDrQXbGWkC7z0WWZAvHlQ6Qv+JmrIwHH1lmX8aXlNlXpIrT9KxDpuZPqJTVqqwzMD8Q==", 879 | "path": "system.resources.extensions/7.0.0", 880 | "hashPath": "system.resources.extensions.7.0.0.nupkg.sha512" 881 | }, 882 | "System.Runtime.Caching/8.0.0": { 883 | "type": "package", 884 | "serviceable": true, 885 | "sha512": "sha512-4TmlmvGp4kzZomm7J2HJn6IIx0UUrQyhBDyb5O1XiunZlQImXW+B8b7W/sTPcXhSf9rp5NR5aDtQllwbB5elOQ==", 886 | "path": "system.runtime.caching/8.0.0", 887 | "hashPath": "system.runtime.caching.8.0.0.nupkg.sha512" 888 | }, 889 | "System.Runtime.CompilerServices.Unsafe/5.0.0": { 890 | "type": "package", 891 | "serviceable": true, 892 | "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", 893 | "path": "system.runtime.compilerservices.unsafe/5.0.0", 894 | "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" 895 | }, 896 | "System.Security.AccessControl/5.0.0": { 897 | "type": "package", 898 | "serviceable": true, 899 | "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", 900 | "path": "system.security.accesscontrol/5.0.0", 901 | "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" 902 | }, 903 | "System.Security.Cryptography.Pkcs/7.0.2": { 904 | "type": "package", 905 | "serviceable": true, 906 | "sha512": "sha512-xhFNJOcQSWhpiVGLLBQYoxAltQSQVycMkwaX1z7I7oEdT9Wr0HzSM1yeAbfoHaERIYd5s6EpLSOLs2qMchSKlA==", 907 | "path": "system.security.cryptography.pkcs/7.0.2", 908 | "hashPath": "system.security.cryptography.pkcs.7.0.2.nupkg.sha512" 909 | }, 910 | "System.Security.Cryptography.ProtectedData/8.0.0": { 911 | "type": "package", 912 | "serviceable": true, 913 | "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", 914 | "path": "system.security.cryptography.protecteddata/8.0.0", 915 | "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" 916 | }, 917 | "System.Security.Cryptography.Xml/7.0.1": { 918 | "type": "package", 919 | "serviceable": true, 920 | "sha512": "sha512-MCxBCtH0GrDuvU63ZODwQHQZPchb24pUAX3MfZ6b13qg246ZD10PRdOvay8C9HBPfCXkymUNwFPEegud7ax2zg==", 921 | "path": "system.security.cryptography.xml/7.0.1", 922 | "hashPath": "system.security.cryptography.xml.7.0.1.nupkg.sha512" 923 | }, 924 | "System.Security.Principal.Windows/5.0.0": { 925 | "type": "package", 926 | "serviceable": true, 927 | "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", 928 | "path": "system.security.principal.windows/5.0.0", 929 | "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" 930 | }, 931 | "System.Text.Encoding.CodePages/5.0.0": { 932 | "type": "package", 933 | "serviceable": true, 934 | "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", 935 | "path": "system.text.encoding.codepages/5.0.0", 936 | "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512" 937 | }, 938 | "System.Threading.Tasks.Dataflow/7.0.0": { 939 | "type": "package", 940 | "serviceable": true, 941 | "sha512": "sha512-BmSJ4b0e2nlplV/RdWVxvH7WECTHACofv06dx/JwOYc0n56eK1jIWdQKNYYsReSO4w8n1QA5stOzSQcfaVBkJg==", 942 | "path": "system.threading.tasks.dataflow/7.0.0", 943 | "hashPath": "system.threading.tasks.dataflow.7.0.0.nupkg.sha512" 944 | }, 945 | "Vanara.Core/3.4.17": { 946 | "type": "package", 947 | "serviceable": true, 948 | "sha512": "sha512-M4P620feiOJLiEo8kG5oQ3fpP1905gtus7FA7/B07LyZJ6bXrqHdoaVkt/XuMTDaDpBlQF4/JECt0EjWcem22Q==", 949 | "path": "vanara.core/3.4.17", 950 | "hashPath": "vanara.core.3.4.17.nupkg.sha512" 951 | }, 952 | "Vanara.PInvoke.ComDlg32/3.4.17": { 953 | "type": "package", 954 | "serviceable": true, 955 | "sha512": "sha512-hqJhSUO0cyxCoh1hVUYzJDeulJpWubUxJLAaNDL9jENaWao+OXGuaC7O61r8gd3rS+dH9QlSt3m4r0sP6Qx1kw==", 956 | "path": "vanara.pinvoke.comdlg32/3.4.17", 957 | "hashPath": "vanara.pinvoke.comdlg32.3.4.17.nupkg.sha512" 958 | }, 959 | "Vanara.PInvoke.DwmApi/3.4.17": { 960 | "type": "package", 961 | "serviceable": true, 962 | "sha512": "sha512-hk31bJbXut/PDJaDvKzX1rGpBSWbGZN3q46Uhf/a8py49mw8LE/7rHqiW/vybGp+qM0VgVaW/waECiZNsq4emQ==", 963 | "path": "vanara.pinvoke.dwmapi/3.4.17", 964 | "hashPath": "vanara.pinvoke.dwmapi.3.4.17.nupkg.sha512" 965 | }, 966 | "Vanara.PInvoke.Gdi32/3.4.17": { 967 | "type": "package", 968 | "serviceable": true, 969 | "sha512": "sha512-/dpW/7gjSIyRFgX11JT6hZMHldiVv7EkTOuvUglYxe9xiMA5jwLZeGbqxUf34e9P7Sk04Bb0f6cfsEYfoVXCWg==", 970 | "path": "vanara.pinvoke.gdi32/3.4.17", 971 | "hashPath": "vanara.pinvoke.gdi32.3.4.17.nupkg.sha512" 972 | }, 973 | "Vanara.PInvoke.Kernel32/3.4.17": { 974 | "type": "package", 975 | "serviceable": true, 976 | "sha512": "sha512-paX5z+13cf7aKzIa8chZrVoRC1KYHJPlCKfn7XJZtyqt/dNaJvOeQdIvT5W9hyPrJVn0c25nYwJdFYMnQQJzgA==", 977 | "path": "vanara.pinvoke.kernel32/3.4.17", 978 | "hashPath": "vanara.pinvoke.kernel32.3.4.17.nupkg.sha512" 979 | }, 980 | "Vanara.PInvoke.Multimedia/3.4.17": { 981 | "type": "package", 982 | "serviceable": true, 983 | "sha512": "sha512-emL/pFShKf06CvLPqqF+a/1jmTIiddJEN5AIqvnlHObNKCTa8YminPbS/DWlomD0aSm4bV0UI6/iQy1d+zCE2w==", 984 | "path": "vanara.pinvoke.multimedia/3.4.17", 985 | "hashPath": "vanara.pinvoke.multimedia.3.4.17.nupkg.sha512" 986 | }, 987 | "Vanara.PInvoke.Shared/3.4.17": { 988 | "type": "package", 989 | "serviceable": true, 990 | "sha512": "sha512-pMipZE3oLA+g2VtlL3g0yrpykl6O1dm50srGY8EEq/6YchMu9RglpeaS64GV2uLmH74b6MP1sawVEmEhfZcfag==", 991 | "path": "vanara.pinvoke.shared/3.4.17", 992 | "hashPath": "vanara.pinvoke.shared.3.4.17.nupkg.sha512" 993 | }, 994 | "Vanara.PInvoke.User32/3.4.17": { 995 | "type": "package", 996 | "serviceable": true, 997 | "sha512": "sha512-Cg6uDb2BtyeOxkeC/Q/9Z+PddDc21/398fdB1C2G7DoAchBYIzo01BuAGDN/3EwENa8cLugYhiMvmCkUYjyAhQ==", 998 | "path": "vanara.pinvoke.user32/3.4.17", 999 | "hashPath": "vanara.pinvoke.user32.3.4.17.nupkg.sha512" 1000 | }, 1001 | "Vortice.D3DCompiler/3.3.4": { 1002 | "type": "package", 1003 | "serviceable": true, 1004 | "sha512": "sha512-G0yAN1us091ulIzPfMVJeJf8JX3Tu/Wu0l4zip4HPLfVUWWxsBJF0eaEdwSPrUyz97LEG6zjHruL4sZoNRBHcA==", 1005 | "path": "vortice.d3dcompiler/3.3.4", 1006 | "hashPath": "vortice.d3dcompiler.3.3.4.nupkg.sha512" 1007 | }, 1008 | "Vortice.Direct3D11/3.3.4": { 1009 | "type": "package", 1010 | "serviceable": true, 1011 | "sha512": "sha512-ma8ysRo7WBmJwt+nNpFi0icHKIgNud6Nb0rz6XPN4V/X93nkVZiN3t96cqdy0kC0QtzYlpFccQ2d/JPrvHt6og==", 1012 | "path": "vortice.direct3d11/3.3.4", 1013 | "hashPath": "vortice.direct3d11.3.3.4.nupkg.sha512" 1014 | }, 1015 | "Vortice.DirectX/3.3.4": { 1016 | "type": "package", 1017 | "serviceable": true, 1018 | "sha512": "sha512-HWvIGYz8XtWZpJW8xGYq5gex/HUPf5u3kDY7w/5WLCXzuR+hqLB7p6tInYePnuVLvfuI/rKMMhlzmnceoP3tIw==", 1019 | "path": "vortice.directx/3.3.4", 1020 | "hashPath": "vortice.directx.3.3.4.nupkg.sha512" 1021 | }, 1022 | "Vortice.DXGI/3.3.4": { 1023 | "type": "package", 1024 | "serviceable": true, 1025 | "sha512": "sha512-toya4AmKpcVJyaZzDJnrZlYsVSQxHTTrwWYee3G4Dzthww5HTgtGluN5ciQKl0KOChbR9xjgSK8+flkw6RNdTg==", 1026 | "path": "vortice.dxgi/3.3.4", 1027 | "hashPath": "vortice.dxgi.3.3.4.nupkg.sha512" 1028 | }, 1029 | "Vortice.Mathematics/1.7.2": { 1030 | "type": "package", 1031 | "serviceable": true, 1032 | "sha512": "sha512-WUUzB3MowHdOqNfSMAms5Ovra+SKgLC4ttH1w75ra3srDGctebSg+aywm7hLdvDn592ydgdbOJN11JKsyAcX+A==", 1033 | "path": "vortice.mathematics/1.7.2", 1034 | "hashPath": "vortice.mathematics.1.7.2.nupkg.sha512" 1035 | }, 1036 | "ClickableTransparentOverlay/9.1.0": { 1037 | "type": "project", 1038 | "serviceable": false, 1039 | "sha512": "" 1040 | }, 1041 | "GameOffsets2/1.0.0": { 1042 | "type": "project", 1043 | "serviceable": false, 1044 | "sha512": "" 1045 | } 1046 | } 1047 | } -------------------------------------------------------------------------------- /ExileCore2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/ExileCore2.dll -------------------------------------------------------------------------------- /ExileCore2.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "frameworks": [ 6 | { 7 | "name": "Microsoft.NETCore.App", 8 | "version": "8.0.0" 9 | }, 10 | { 11 | "name": "Microsoft.WindowsDesktop.App", 12 | "version": "8.0.0" 13 | } 14 | ], 15 | "configProperties": { 16 | "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, 17 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /GameOffsets2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/GameOffsets2.dll -------------------------------------------------------------------------------- /ImGui.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/ImGui.NET.dll -------------------------------------------------------------------------------- /ItemFilterLibrary.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0/win-x64", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": {}, 9 | ".NETCoreApp,Version=v8.0/win-x64": { 10 | "ItemFilterLibrary/1.0.0": { 11 | "dependencies": { 12 | "ExileCore2": "1.0.0", 13 | "GameOffsets2": "1.0.0", 14 | "System.Linq.Dynamic.Core": "1.3.7", 15 | "ExileCore2.Reference": "1.0.0.0" 16 | }, 17 | "runtime": { 18 | "ItemFilterLibrary.dll": {} 19 | } 20 | }, 21 | "ImGui.NET/1.90.0.1": { 22 | "dependencies": { 23 | "System.Buffers": "4.4.0", 24 | "System.Numerics.Vectors": "4.4.0", 25 | "System.Runtime.CompilerServices.Unsafe": "5.0.0" 26 | }, 27 | "runtime": { 28 | "lib/net6.0/ImGui.NET.dll": { 29 | "assemblyVersion": "1.90.0.1", 30 | "fileVersion": "1.90.0.1" 31 | } 32 | }, 33 | "native": { 34 | "runtimes/win-x64/native/cimgui.dll": { 35 | "fileVersion": "0.0.0.0" 36 | } 37 | } 38 | }, 39 | "LinqFaster/1.0.0": { 40 | "runtime": { 41 | "lib/netstandard2.0/JM.LinqFaster.dll": { 42 | "assemblyVersion": "0.1.0.0", 43 | "fileVersion": "0.1.0.0" 44 | } 45 | } 46 | }, 47 | "Microsoft.Build/17.8.3": { 48 | "dependencies": { 49 | "Microsoft.Build.Framework": "17.8.3", 50 | "Microsoft.NET.StringTools": "17.8.3", 51 | "System.Collections.Immutable": "8.0.0", 52 | "System.Configuration.ConfigurationManager": "8.0.0", 53 | "System.Reflection.Metadata": "8.0.0", 54 | "System.Reflection.MetadataLoadContext": "7.0.0", 55 | "System.Security.Principal.Windows": "5.0.0", 56 | "System.Threading.Tasks.Dataflow": "7.0.0" 57 | } 58 | }, 59 | "Microsoft.Build.Framework/17.8.3": {}, 60 | "Microsoft.Build.Locator/1.6.10": { 61 | "runtime": { 62 | "lib/net6.0/Microsoft.Build.Locator.dll": { 63 | "assemblyVersion": "1.0.0.0", 64 | "fileVersion": "1.6.10.57384" 65 | } 66 | } 67 | }, 68 | "Microsoft.Build.Tasks.Core/17.8.3": { 69 | "dependencies": { 70 | "Microsoft.Build.Framework": "17.8.3", 71 | "Microsoft.Build.Utilities.Core": "17.8.3", 72 | "Microsoft.NET.StringTools": "17.8.3", 73 | "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.2.2146", 74 | "System.CodeDom": "7.0.0", 75 | "System.Collections.Immutable": "8.0.0", 76 | "System.Configuration.ConfigurationManager": "8.0.0", 77 | "System.Resources.Extensions": "7.0.0", 78 | "System.Security.Cryptography.Pkcs": "7.0.2", 79 | "System.Security.Cryptography.Xml": "7.0.1" 80 | } 81 | }, 82 | "Microsoft.Build.Utilities.Core/17.8.3": { 83 | "dependencies": { 84 | "Microsoft.Build.Framework": "17.8.3", 85 | "Microsoft.NET.StringTools": "17.8.3", 86 | "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.2.2146", 87 | "System.Collections.Immutable": "8.0.0", 88 | "System.Configuration.ConfigurationManager": "8.0.0" 89 | } 90 | }, 91 | "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, 92 | "Microsoft.CodeAnalysis.Common/4.11.0": { 93 | "dependencies": { 94 | "Microsoft.CodeAnalysis.Analyzers": "3.3.4", 95 | "System.Collections.Immutable": "8.0.0", 96 | "System.Reflection.Metadata": "8.0.0" 97 | }, 98 | "runtime": { 99 | "lib/net8.0/Microsoft.CodeAnalysis.dll": { 100 | "assemblyVersion": "4.11.0.0", 101 | "fileVersion": "4.1100.24.37604" 102 | } 103 | } 104 | }, 105 | "Microsoft.CodeAnalysis.CSharp/4.11.0": { 106 | "dependencies": { 107 | "Microsoft.CodeAnalysis.Analyzers": "3.3.4", 108 | "Microsoft.CodeAnalysis.Common": "4.11.0", 109 | "System.Collections.Immutable": "8.0.0", 110 | "System.Reflection.Metadata": "8.0.0" 111 | }, 112 | "runtime": { 113 | "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll": { 114 | "assemblyVersion": "4.11.0.0", 115 | "fileVersion": "4.1100.24.37604" 116 | } 117 | } 118 | }, 119 | "Microsoft.CodeAnalysis.CSharp.Scripting/4.11.0": { 120 | "dependencies": { 121 | "Microsoft.CSharp": "4.7.0", 122 | "Microsoft.CodeAnalysis.Analyzers": "3.3.4", 123 | "Microsoft.CodeAnalysis.CSharp": "4.11.0", 124 | "Microsoft.CodeAnalysis.Common": "4.11.0", 125 | "Microsoft.CodeAnalysis.Scripting.Common": "4.11.0", 126 | "System.Collections.Immutable": "8.0.0", 127 | "System.Reflection.Metadata": "8.0.0" 128 | }, 129 | "runtime": { 130 | "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { 131 | "assemblyVersion": "4.11.0.0", 132 | "fileVersion": "4.1100.24.37604" 133 | } 134 | } 135 | }, 136 | "Microsoft.CodeAnalysis.Scripting.Common/4.11.0": { 137 | "dependencies": { 138 | "Microsoft.CodeAnalysis.Analyzers": "3.3.4", 139 | "Microsoft.CodeAnalysis.Common": "4.11.0", 140 | "System.Collections.Immutable": "8.0.0", 141 | "System.Reflection.Metadata": "8.0.0" 142 | }, 143 | "runtime": { 144 | "lib/net8.0/Microsoft.CodeAnalysis.Scripting.dll": { 145 | "assemblyVersion": "4.11.0.0", 146 | "fileVersion": "4.1100.24.37604" 147 | } 148 | } 149 | }, 150 | "Microsoft.CSharp/4.7.0": {}, 151 | "Microsoft.NET.StringTools/17.8.3": {}, 152 | "Microsoft.NETCore.Platforms/5.0.0": {}, 153 | "Microsoft.VisualStudio.Setup.Configuration.Interop/3.2.2146": {}, 154 | "Microsoft.Win32.Registry/5.0.0": { 155 | "dependencies": { 156 | "System.Security.AccessControl": "5.0.0", 157 | "System.Security.Principal.Windows": "5.0.0" 158 | } 159 | }, 160 | "morelinq/4.0.0": { 161 | "runtime": { 162 | "lib/net6.0/MoreLinq.dll": { 163 | "assemblyVersion": "4.0.0.0", 164 | "fileVersion": "4.0.0.0" 165 | } 166 | } 167 | }, 168 | "NAudio/2.2.1": { 169 | "dependencies": { 170 | "NAudio.Asio": "2.2.1", 171 | "NAudio.Core": "2.2.1", 172 | "NAudio.Midi": "2.2.1", 173 | "NAudio.Wasapi": "2.2.1", 174 | "NAudio.WinForms": "2.2.1", 175 | "NAudio.WinMM": "2.2.1" 176 | }, 177 | "runtime": { 178 | "lib/net6.0-windows7.0/NAudio.dll": { 179 | "assemblyVersion": "2.2.1.0", 180 | "fileVersion": "2.2.1.0" 181 | } 182 | } 183 | }, 184 | "NAudio.Asio/2.2.1": { 185 | "dependencies": { 186 | "Microsoft.Win32.Registry": "5.0.0", 187 | "NAudio.Core": "2.2.1" 188 | }, 189 | "runtime": { 190 | "lib/netstandard2.0/NAudio.Asio.dll": { 191 | "assemblyVersion": "2.2.1.0", 192 | "fileVersion": "2.2.1.0" 193 | } 194 | } 195 | }, 196 | "NAudio.Core/2.2.1": { 197 | "runtime": { 198 | "lib/netstandard2.0/NAudio.Core.dll": { 199 | "assemblyVersion": "2.2.1.0", 200 | "fileVersion": "2.2.1.0" 201 | } 202 | } 203 | }, 204 | "NAudio.Midi/2.2.1": { 205 | "dependencies": { 206 | "NAudio.Core": "2.2.1" 207 | }, 208 | "runtime": { 209 | "lib/netstandard2.0/NAudio.Midi.dll": { 210 | "assemblyVersion": "2.2.1.0", 211 | "fileVersion": "2.2.1.0" 212 | } 213 | } 214 | }, 215 | "NAudio.Wasapi/2.2.1": { 216 | "dependencies": { 217 | "NAudio.Core": "2.2.1" 218 | }, 219 | "runtime": { 220 | "lib/netstandard2.0/NAudio.Wasapi.dll": { 221 | "assemblyVersion": "2.2.1.0", 222 | "fileVersion": "2.2.1.0" 223 | } 224 | } 225 | }, 226 | "NAudio.WinForms/2.2.1": { 227 | "dependencies": { 228 | "NAudio.WinMM": "2.2.1" 229 | }, 230 | "runtime": { 231 | "lib/netcoreapp3.1/NAudio.WinForms.dll": { 232 | "assemblyVersion": "2.2.1.0", 233 | "fileVersion": "2.2.1.0" 234 | } 235 | } 236 | }, 237 | "NAudio.WinMM/2.2.1": { 238 | "dependencies": { 239 | "Microsoft.Win32.Registry": "5.0.0", 240 | "NAudio.Core": "2.2.1" 241 | }, 242 | "runtime": { 243 | "lib/netstandard2.0/NAudio.WinMM.dll": { 244 | "assemblyVersion": "2.2.1.0", 245 | "fileVersion": "2.2.1.0" 246 | } 247 | } 248 | }, 249 | "Newtonsoft.Json/13.0.3": { 250 | "runtime": { 251 | "lib/net6.0/Newtonsoft.Json.dll": { 252 | "assemblyVersion": "13.0.0.0", 253 | "fileVersion": "13.0.3.27908" 254 | } 255 | } 256 | }, 257 | "ProcessMemoryUtilities.Net/1.3.4": { 258 | "runtime": { 259 | "lib/netstandard2.0/ProcessMemoryUtilities.dll": { 260 | "assemblyVersion": "1.3.4.0", 261 | "fileVersion": "1.3.4.0" 262 | } 263 | } 264 | }, 265 | "Serilog/3.1.1": { 266 | "runtime": { 267 | "lib/net7.0/Serilog.dll": { 268 | "assemblyVersion": "2.0.0.0", 269 | "fileVersion": "3.1.1.0" 270 | } 271 | } 272 | }, 273 | "Serilog.Sinks.File/5.0.0": { 274 | "dependencies": { 275 | "Serilog": "3.1.1" 276 | }, 277 | "runtime": { 278 | "lib/net5.0/Serilog.Sinks.File.dll": { 279 | "assemblyVersion": "5.0.0.0", 280 | "fileVersion": "5.0.0.0" 281 | } 282 | } 283 | }, 284 | "SharpGen.Runtime/2.1.2-beta": { 285 | "runtime": { 286 | "lib/net8.0/SharpGen.Runtime.dll": { 287 | "assemblyVersion": "2.1.2.0", 288 | "fileVersion": "2.1.2.0" 289 | } 290 | } 291 | }, 292 | "SharpGen.Runtime.COM/2.1.2-beta": { 293 | "dependencies": { 294 | "SharpGen.Runtime": "2.1.2-beta" 295 | }, 296 | "runtime": { 297 | "lib/net8.0/SharpGen.Runtime.COM.dll": { 298 | "assemblyVersion": "2.1.2.0", 299 | "fileVersion": "2.1.2.0" 300 | } 301 | } 302 | }, 303 | "SixLabors.ImageSharp/2.1.3": { 304 | "dependencies": { 305 | "System.Runtime.CompilerServices.Unsafe": "5.0.0", 306 | "System.Text.Encoding.CodePages": "5.0.0" 307 | }, 308 | "runtime": { 309 | "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": { 310 | "assemblyVersion": "2.0.0.0", 311 | "fileVersion": "2.1.3.0" 312 | } 313 | } 314 | }, 315 | "System.Buffers/4.4.0": {}, 316 | "System.CodeDom/7.0.0": {}, 317 | "System.Collections.Immutable/8.0.0": {}, 318 | "System.Configuration.ConfigurationManager/8.0.0": { 319 | "dependencies": { 320 | "System.Diagnostics.EventLog": "8.0.0", 321 | "System.Security.Cryptography.ProtectedData": "8.0.0" 322 | } 323 | }, 324 | "System.Diagnostics.EventLog/8.0.0": { 325 | "runtime": { 326 | "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { 327 | "assemblyVersion": "8.0.0.0", 328 | "fileVersion": "8.0.23.53103" 329 | } 330 | } 331 | }, 332 | "System.Formats.Asn1/7.0.0": {}, 333 | "System.Linq.Dynamic.Core/1.3.7": { 334 | "runtime": { 335 | "lib/net8.0/System.Linq.Dynamic.Core.dll": { 336 | "assemblyVersion": "1.3.7.0", 337 | "fileVersion": "1.3.7.0" 338 | } 339 | } 340 | }, 341 | "System.Numerics.Vectors/4.4.0": {}, 342 | "System.Reflection.Metadata/8.0.0": { 343 | "dependencies": { 344 | "System.Collections.Immutable": "8.0.0" 345 | } 346 | }, 347 | "System.Reflection.MetadataLoadContext/7.0.0": { 348 | "dependencies": { 349 | "System.Collections.Immutable": "8.0.0", 350 | "System.Reflection.Metadata": "8.0.0" 351 | } 352 | }, 353 | "System.Resources.Extensions/7.0.0": {}, 354 | "System.Runtime.Caching/8.0.0": { 355 | "dependencies": { 356 | "System.Configuration.ConfigurationManager": "8.0.0" 357 | }, 358 | "runtime": { 359 | "runtimes/win/lib/net8.0/System.Runtime.Caching.dll": { 360 | "assemblyVersion": "8.0.0.0", 361 | "fileVersion": "8.0.23.53103" 362 | } 363 | } 364 | }, 365 | "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, 366 | "System.Security.AccessControl/5.0.0": { 367 | "dependencies": { 368 | "Microsoft.NETCore.Platforms": "5.0.0", 369 | "System.Security.Principal.Windows": "5.0.0" 370 | } 371 | }, 372 | "System.Security.Cryptography.Pkcs/7.0.2": { 373 | "dependencies": { 374 | "System.Formats.Asn1": "7.0.0" 375 | } 376 | }, 377 | "System.Security.Cryptography.ProtectedData/8.0.0": {}, 378 | "System.Security.Cryptography.Xml/7.0.1": { 379 | "dependencies": { 380 | "System.Security.Cryptography.Pkcs": "7.0.2" 381 | } 382 | }, 383 | "System.Security.Principal.Windows/5.0.0": {}, 384 | "System.Text.Encoding.CodePages/5.0.0": { 385 | "dependencies": { 386 | "Microsoft.NETCore.Platforms": "5.0.0" 387 | } 388 | }, 389 | "System.Threading.Tasks.Dataflow/7.0.0": {}, 390 | "Vanara.Core/3.4.17": { 391 | "runtime": { 392 | "lib/net6.0/Vanara.Core.dll": { 393 | "assemblyVersion": "3.4.17.0", 394 | "fileVersion": "3.4.17.0" 395 | } 396 | } 397 | }, 398 | "Vanara.PInvoke.ComDlg32/3.4.17": { 399 | "dependencies": { 400 | "Vanara.Core": "3.4.17", 401 | "Vanara.PInvoke.Kernel32": "3.4.17", 402 | "Vanara.PInvoke.Shared": "3.4.17", 403 | "Vanara.PInvoke.User32": "3.4.17" 404 | }, 405 | "runtime": { 406 | "lib/net6.0/Vanara.PInvoke.ComDlg32.dll": { 407 | "assemblyVersion": "3.4.17.0", 408 | "fileVersion": "3.4.17.0" 409 | } 410 | } 411 | }, 412 | "Vanara.PInvoke.DwmApi/3.4.17": { 413 | "dependencies": { 414 | "Vanara.Core": "3.4.17", 415 | "Vanara.PInvoke.Gdi32": "3.4.17", 416 | "Vanara.PInvoke.Shared": "3.4.17" 417 | }, 418 | "runtime": { 419 | "lib/net6.0/Vanara.PInvoke.DwmApi.dll": { 420 | "assemblyVersion": "3.4.17.0", 421 | "fileVersion": "3.4.17.0" 422 | } 423 | } 424 | }, 425 | "Vanara.PInvoke.Gdi32/3.4.17": { 426 | "dependencies": { 427 | "Vanara.Core": "3.4.17", 428 | "Vanara.PInvoke.Shared": "3.4.17" 429 | }, 430 | "runtime": { 431 | "lib/net6.0/Vanara.PInvoke.Gdi32.dll": { 432 | "assemblyVersion": "3.4.17.0", 433 | "fileVersion": "3.4.17.0" 434 | } 435 | } 436 | }, 437 | "Vanara.PInvoke.Kernel32/3.4.17": { 438 | "dependencies": { 439 | "Vanara.Core": "3.4.17", 440 | "Vanara.PInvoke.Shared": "3.4.17" 441 | }, 442 | "runtime": { 443 | "lib/net6.0/Vanara.PInvoke.Kernel32.dll": { 444 | "assemblyVersion": "3.4.17.0", 445 | "fileVersion": "3.4.17.0" 446 | } 447 | } 448 | }, 449 | "Vanara.PInvoke.Multimedia/3.4.17": { 450 | "dependencies": { 451 | "Vanara.Core": "3.4.17", 452 | "Vanara.PInvoke.ComDlg32": "3.4.17", 453 | "Vanara.PInvoke.Gdi32": "3.4.17", 454 | "Vanara.PInvoke.Kernel32": "3.4.17", 455 | "Vanara.PInvoke.Shared": "3.4.17" 456 | }, 457 | "runtime": { 458 | "lib/net6.0/Vanara.PInvoke.Multimedia.dll": { 459 | "assemblyVersion": "3.4.17.0", 460 | "fileVersion": "3.4.17.0" 461 | } 462 | } 463 | }, 464 | "Vanara.PInvoke.Shared/3.4.17": { 465 | "dependencies": { 466 | "Microsoft.Win32.Registry": "5.0.0", 467 | "Vanara.Core": "3.4.17" 468 | }, 469 | "runtime": { 470 | "lib/net6.0/Vanara.PInvoke.Shared.dll": { 471 | "assemblyVersion": "3.4.17.0", 472 | "fileVersion": "3.4.17.0" 473 | } 474 | } 475 | }, 476 | "Vanara.PInvoke.User32/3.4.17": { 477 | "dependencies": { 478 | "Vanara.Core": "3.4.17", 479 | "Vanara.PInvoke.Gdi32": "3.4.17", 480 | "Vanara.PInvoke.Kernel32": "3.4.17", 481 | "Vanara.PInvoke.Shared": "3.4.17" 482 | }, 483 | "runtime": { 484 | "lib/net6.0/Vanara.PInvoke.User32.dll": { 485 | "assemblyVersion": "3.4.17.0", 486 | "fileVersion": "3.4.17.0" 487 | } 488 | } 489 | }, 490 | "Vortice.D3DCompiler/3.3.4": { 491 | "dependencies": { 492 | "SharpGen.Runtime": "2.1.2-beta", 493 | "SharpGen.Runtime.COM": "2.1.2-beta", 494 | "Vortice.DirectX": "3.3.4", 495 | "Vortice.Mathematics": "1.7.2" 496 | }, 497 | "runtime": { 498 | "lib/net8.0/Vortice.D3DCompiler.dll": { 499 | "assemblyVersion": "3.3.4.0", 500 | "fileVersion": "3.3.4.0" 501 | } 502 | } 503 | }, 504 | "Vortice.Direct3D11/3.3.4": { 505 | "dependencies": { 506 | "SharpGen.Runtime": "2.1.2-beta", 507 | "SharpGen.Runtime.COM": "2.1.2-beta", 508 | "Vortice.DXGI": "3.3.4", 509 | "Vortice.Mathematics": "1.7.2" 510 | }, 511 | "runtime": { 512 | "lib/net8.0/Vortice.Direct3D11.dll": { 513 | "assemblyVersion": "3.3.4.0", 514 | "fileVersion": "3.3.4.0" 515 | } 516 | } 517 | }, 518 | "Vortice.DirectX/3.3.4": { 519 | "dependencies": { 520 | "SharpGen.Runtime": "2.1.2-beta", 521 | "SharpGen.Runtime.COM": "2.1.2-beta", 522 | "Vortice.Mathematics": "1.7.2" 523 | }, 524 | "runtime": { 525 | "lib/net8.0/Vortice.DirectX.dll": { 526 | "assemblyVersion": "3.3.4.0", 527 | "fileVersion": "3.3.4.0" 528 | } 529 | } 530 | }, 531 | "Vortice.DXGI/3.3.4": { 532 | "dependencies": { 533 | "SharpGen.Runtime": "2.1.2-beta", 534 | "SharpGen.Runtime.COM": "2.1.2-beta", 535 | "Vortice.DirectX": "3.3.4", 536 | "Vortice.Mathematics": "1.7.2" 537 | }, 538 | "runtime": { 539 | "lib/net8.0/Vortice.DXGI.dll": { 540 | "assemblyVersion": "3.3.4.0", 541 | "fileVersion": "3.3.4.0" 542 | } 543 | } 544 | }, 545 | "Vortice.Mathematics/1.7.2": { 546 | "runtime": { 547 | "lib/net8.0/Vortice.Mathematics.dll": { 548 | "assemblyVersion": "1.7.2.0", 549 | "fileVersion": "1.7.2.0" 550 | } 551 | } 552 | }, 553 | "ClickableTransparentOverlay/9.1.0": { 554 | "dependencies": { 555 | "ImGui.NET": "1.90.0.1", 556 | "SixLabors.ImageSharp": "2.1.3", 557 | "Vanara.PInvoke.DwmApi": "3.4.17", 558 | "Vanara.PInvoke.Kernel32": "3.4.17", 559 | "Vanara.PInvoke.User32": "3.4.17", 560 | "Vortice.D3DCompiler": "3.3.4", 561 | "Vortice.Direct3D11": "3.3.4" 562 | }, 563 | "runtime": { 564 | "ClickableTransparentOverlay.dll": {} 565 | } 566 | }, 567 | "ExileCore2/1.0.0": { 568 | "dependencies": { 569 | "ClickableTransparentOverlay": "9.1.0", 570 | "GameOffsets2": "1.0.0", 571 | "ImGui.NET": "1.90.0.1", 572 | "LinqFaster": "1.0.0", 573 | "Microsoft.Build": "17.8.3", 574 | "Microsoft.Build.Framework": "17.8.3", 575 | "Microsoft.Build.Locator": "1.6.10", 576 | "Microsoft.Build.Tasks.Core": "17.8.3", 577 | "Microsoft.CodeAnalysis.CSharp.Scripting": "4.11.0", 578 | "NAudio": "2.2.1", 579 | "Newtonsoft.Json": "13.0.3", 580 | "ProcessMemoryUtilities.Net": "1.3.4", 581 | "Serilog": "3.1.1", 582 | "Serilog.Sinks.File": "5.0.0", 583 | "System.Runtime.Caching": "8.0.0", 584 | "Vanara.PInvoke.DwmApi": "3.4.17", 585 | "Vanara.PInvoke.Kernel32": "3.4.17", 586 | "Vanara.PInvoke.Multimedia": "3.4.17", 587 | "Vanara.PInvoke.User32": "3.4.17", 588 | "morelinq": "4.0.0" 589 | }, 590 | "runtime": { 591 | "ExileCore2.dll": {} 592 | } 593 | }, 594 | "GameOffsets2/1.0.0": { 595 | "runtime": { 596 | "GameOffsets2.dll": {} 597 | } 598 | }, 599 | "ExileCore2.Reference/1.0.0.0": { 600 | "runtime": { 601 | "ExileCore2.dll": { 602 | "assemblyVersion": "1.0.0.0", 603 | "fileVersion": "1.0.0.0" 604 | } 605 | } 606 | } 607 | } 608 | }, 609 | "libraries": { 610 | "ItemFilterLibrary/1.0.0": { 611 | "type": "project", 612 | "serviceable": false, 613 | "sha512": "" 614 | }, 615 | "ImGui.NET/1.90.0.1": { 616 | "type": "package", 617 | "serviceable": true, 618 | "sha512": "sha512-ZhEN7SKx5e9bbWY5BR2tNdbl7W4cJXaESwFRGo6p2pUSM9Y8yxtWq2zM4Qf8a8HYCmblHuFWtp8YcZiWlcJ3ZQ==", 619 | "path": "imgui.net/1.90.0.1", 620 | "hashPath": "imgui.net.1.90.0.1.nupkg.sha512" 621 | }, 622 | "LinqFaster/1.0.0": { 623 | "type": "package", 624 | "serviceable": true, 625 | "sha512": "sha512-+s29tEAu8bAXqnDeWhYNrhUGDiSPzf2RsZgvGsNdMgJBa3ywp5zJzkf8EBAgd6h7I0GpG6Zw/K1SENt9jD09mA==", 626 | "path": "linqfaster/1.0.0", 627 | "hashPath": "linqfaster.1.0.0.nupkg.sha512" 628 | }, 629 | "Microsoft.Build/17.8.3": { 630 | "type": "package", 631 | "serviceable": true, 632 | "sha512": "sha512-jOxP2DrBZb2zuDO5M8LfI50SCdXlahgUHJ6mH0jz4OBID0F9o+DVggk0CPAONmcbUPo2SsQCFkMaxmHkKLj99Q==", 633 | "path": "microsoft.build/17.8.3", 634 | "hashPath": "microsoft.build.17.8.3.nupkg.sha512" 635 | }, 636 | "Microsoft.Build.Framework/17.8.3": { 637 | "type": "package", 638 | "serviceable": true, 639 | "sha512": "sha512-NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", 640 | "path": "microsoft.build.framework/17.8.3", 641 | "hashPath": "microsoft.build.framework.17.8.3.nupkg.sha512" 642 | }, 643 | "Microsoft.Build.Locator/1.6.10": { 644 | "type": "package", 645 | "serviceable": true, 646 | "sha512": "sha512-DJhCkTGqy1LMJzEmG/2qxRTMHwdPc3WdVoGQI5o5mKHVo4dsHrCMLIyruwU/NSvPNSdvONlaf7jdFXnAMuxAuA==", 647 | "path": "microsoft.build.locator/1.6.10", 648 | "hashPath": "microsoft.build.locator.1.6.10.nupkg.sha512" 649 | }, 650 | "Microsoft.Build.Tasks.Core/17.8.3": { 651 | "type": "package", 652 | "serviceable": true, 653 | "sha512": "sha512-TTDmyo4uMUGRRWK6UpGqLlOVv1aJFIn6w+0UN1YsS204MGbSbI6T7E23JjsH0/Ef24TBVXjbU1hpmaq1ty5fGQ==", 654 | "path": "microsoft.build.tasks.core/17.8.3", 655 | "hashPath": "microsoft.build.tasks.core.17.8.3.nupkg.sha512" 656 | }, 657 | "Microsoft.Build.Utilities.Core/17.8.3": { 658 | "type": "package", 659 | "serviceable": true, 660 | "sha512": "sha512-ex8Sjx02q0FmForLRFItB82sJx5s2JRWIpJgYDW1g7xLUoFlKLoNp67UwS5xN8YcYBkT7vRxXeYx/dQ96KaWtg==", 661 | "path": "microsoft.build.utilities.core/17.8.3", 662 | "hashPath": "microsoft.build.utilities.core.17.8.3.nupkg.sha512" 663 | }, 664 | "Microsoft.CodeAnalysis.Analyzers/3.3.4": { 665 | "type": "package", 666 | "serviceable": true, 667 | "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", 668 | "path": "microsoft.codeanalysis.analyzers/3.3.4", 669 | "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" 670 | }, 671 | "Microsoft.CodeAnalysis.Common/4.11.0": { 672 | "type": "package", 673 | "serviceable": true, 674 | "sha512": "sha512-djf8ujmqYImFgB04UGtcsEhHrzVqzHowS+EEl/Yunc5LdrYrZhGBWUTXoCF0NzYXJxtfuD+UVQarWpvrNc94Qg==", 675 | "path": "microsoft.codeanalysis.common/4.11.0", 676 | "hashPath": "microsoft.codeanalysis.common.4.11.0.nupkg.sha512" 677 | }, 678 | "Microsoft.CodeAnalysis.CSharp/4.11.0": { 679 | "type": "package", 680 | "serviceable": true, 681 | "sha512": "sha512-6XYi2EusI8JT4y2l/F3VVVS+ISoIX9nqHsZRaG6W5aFeJ5BEuBosHfT/ABb73FN0RZ1Z3cj2j7cL28SToJPXOw==", 682 | "path": "microsoft.codeanalysis.csharp/4.11.0", 683 | "hashPath": "microsoft.codeanalysis.csharp.4.11.0.nupkg.sha512" 684 | }, 685 | "Microsoft.CodeAnalysis.CSharp.Scripting/4.11.0": { 686 | "type": "package", 687 | "serviceable": true, 688 | "sha512": "sha512-sNeVeHfGHEPtxYGQIP+0BSTSBuv+dkWP5HEc1FstJpyYlibqKOmFm3y2j1AwEx9sKoRTs01092yrTH9BwZsxFQ==", 689 | "path": "microsoft.codeanalysis.csharp.scripting/4.11.0", 690 | "hashPath": "microsoft.codeanalysis.csharp.scripting.4.11.0.nupkg.sha512" 691 | }, 692 | "Microsoft.CodeAnalysis.Scripting.Common/4.11.0": { 693 | "type": "package", 694 | "serviceable": true, 695 | "sha512": "sha512-UHZIAKQcLB00N7AvMoyEYLw8qvFmGcKffEm/M2dEqYz2TWUtQW2j0+nGglbt9VwOId6TrDZGQlGjX90VNFak/w==", 696 | "path": "microsoft.codeanalysis.scripting.common/4.11.0", 697 | "hashPath": "microsoft.codeanalysis.scripting.common.4.11.0.nupkg.sha512" 698 | }, 699 | "Microsoft.CSharp/4.7.0": { 700 | "type": "package", 701 | "serviceable": true, 702 | "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", 703 | "path": "microsoft.csharp/4.7.0", 704 | "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" 705 | }, 706 | "Microsoft.NET.StringTools/17.8.3": { 707 | "type": "package", 708 | "serviceable": true, 709 | "sha512": "sha512-y6DiuacjlIfXH3XVQG5htf+4oheinZAo7sHbITB3z7yCXQec48f9ZhGSXkr+xn1bfl73Yc3ZQEW2peJ5X68AvQ==", 710 | "path": "microsoft.net.stringtools/17.8.3", 711 | "hashPath": "microsoft.net.stringtools.17.8.3.nupkg.sha512" 712 | }, 713 | "Microsoft.NETCore.Platforms/5.0.0": { 714 | "type": "package", 715 | "serviceable": true, 716 | "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", 717 | "path": "microsoft.netcore.platforms/5.0.0", 718 | "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" 719 | }, 720 | "Microsoft.VisualStudio.Setup.Configuration.Interop/3.2.2146": { 721 | "type": "package", 722 | "serviceable": true, 723 | "sha512": "sha512-gMq8uGy8zTIp0kQGTI45buZC3JOStGJyjGD8gksskk83aQISW65IESErLE/WDT7Bdy+QWbdUi7QyO1LEzUSOFA==", 724 | "path": "microsoft.visualstudio.setup.configuration.interop/3.2.2146", 725 | "hashPath": "microsoft.visualstudio.setup.configuration.interop.3.2.2146.nupkg.sha512" 726 | }, 727 | "Microsoft.Win32.Registry/5.0.0": { 728 | "type": "package", 729 | "serviceable": true, 730 | "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", 731 | "path": "microsoft.win32.registry/5.0.0", 732 | "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" 733 | }, 734 | "morelinq/4.0.0": { 735 | "type": "package", 736 | "serviceable": true, 737 | "sha512": "sha512-MUyjssR1HPf2eNFYj/j170VlDRes5Jl7/DEC5WfN5LolA3pjhbCe2EIp4bcNpNENtMRenlj2nRD+D5KQmk4TMQ==", 738 | "path": "morelinq/4.0.0", 739 | "hashPath": "morelinq.4.0.0.nupkg.sha512" 740 | }, 741 | "NAudio/2.2.1": { 742 | "type": "package", 743 | "serviceable": true, 744 | "sha512": "sha512-c0DzwiyyklM0TP39Y7RObwO3QkWecgM6H60ikiEnsV/aEAJPbj5MFCLaD8BSfKuZe0HGuh9GRGWWlJmSxDc9MA==", 745 | "path": "naudio/2.2.1", 746 | "hashPath": "naudio.2.2.1.nupkg.sha512" 747 | }, 748 | "NAudio.Asio/2.2.1": { 749 | "type": "package", 750 | "serviceable": true, 751 | "sha512": "sha512-hQglyOT5iT3XuGpBP8ZG0+aoqwRfidHjTNehpoWwX0g6KJEgtH2VaqM2nuJ2mheKZa/IBqB4YQTZVvrIapzfOA==", 752 | "path": "naudio.asio/2.2.1", 753 | "hashPath": "naudio.asio.2.2.1.nupkg.sha512" 754 | }, 755 | "NAudio.Core/2.2.1": { 756 | "type": "package", 757 | "serviceable": true, 758 | "sha512": "sha512-GgkdP6K/7FqXFo7uHvoqGZTJvW4z8g2IffhOO4JHaLzKCdDOUEzVKtveoZkCuUX8eV2HAINqi7VFqlFndrnz/g==", 759 | "path": "naudio.core/2.2.1", 760 | "hashPath": "naudio.core.2.2.1.nupkg.sha512" 761 | }, 762 | "NAudio.Midi/2.2.1": { 763 | "type": "package", 764 | "serviceable": true, 765 | "sha512": "sha512-6r23ylGo5aeP02WFXsPquz0T0hFJWyh+7t++tz19tc3Kr38NHm+Z9j+FiAv+xkH8tZqXJqus9Q8p6u7bidIgbw==", 766 | "path": "naudio.midi/2.2.1", 767 | "hashPath": "naudio.midi.2.2.1.nupkg.sha512" 768 | }, 769 | "NAudio.Wasapi/2.2.1": { 770 | "type": "package", 771 | "serviceable": true, 772 | "sha512": "sha512-lFfXoqacZZe0WqNChJgGYI+XV/n/61LzPHT3C1CJp4khoxeo2sziyX5wzNYWeCMNbsWxFvT3b3iXeY1UYjBhZw==", 773 | "path": "naudio.wasapi/2.2.1", 774 | "hashPath": "naudio.wasapi.2.2.1.nupkg.sha512" 775 | }, 776 | "NAudio.WinForms/2.2.1": { 777 | "type": "package", 778 | "serviceable": true, 779 | "sha512": "sha512-DlDkewY1myY0A+3NrYRJD+MZhZV0yy1mNF6dckB27IQ9XCs/My5Ip8BZcoSHOsaPSe2GAjvoaDnk6N9w8xTv7w==", 780 | "path": "naudio.winforms/2.2.1", 781 | "hashPath": "naudio.winforms.2.2.1.nupkg.sha512" 782 | }, 783 | "NAudio.WinMM/2.2.1": { 784 | "type": "package", 785 | "serviceable": true, 786 | "sha512": "sha512-xFHRFwH4x6aq3IxRbewvO33ugJRvZFEOfO62i7uQJRUNW2cnu6BeBTHUS0JD5KBucZbHZaYqxQG8dwZ47ezQuQ==", 787 | "path": "naudio.winmm/2.2.1", 788 | "hashPath": "naudio.winmm.2.2.1.nupkg.sha512" 789 | }, 790 | "Newtonsoft.Json/13.0.3": { 791 | "type": "package", 792 | "serviceable": true, 793 | "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", 794 | "path": "newtonsoft.json/13.0.3", 795 | "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" 796 | }, 797 | "ProcessMemoryUtilities.Net/1.3.4": { 798 | "type": "package", 799 | "serviceable": true, 800 | "sha512": "sha512-rByxPnSJOKCro7E8hFEFU58VKGu6rK+BLMJMlbh7PO+MyiP7hXWLASColOuWw7NvZ2P3pNOCtchQ38VpNJ7Mhg==", 801 | "path": "processmemoryutilities.net/1.3.4", 802 | "hashPath": "processmemoryutilities.net.1.3.4.nupkg.sha512" 803 | }, 804 | "Serilog/3.1.1": { 805 | "type": "package", 806 | "serviceable": true, 807 | "sha512": "sha512-P6G4/4Kt9bT635bhuwdXlJ2SCqqn2nhh4gqFqQueCOr9bK/e7W9ll/IoX1Ter948cV2Z/5+5v8pAfJYUISY03A==", 808 | "path": "serilog/3.1.1", 809 | "hashPath": "serilog.3.1.1.nupkg.sha512" 810 | }, 811 | "Serilog.Sinks.File/5.0.0": { 812 | "type": "package", 813 | "serviceable": true, 814 | "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", 815 | "path": "serilog.sinks.file/5.0.0", 816 | "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" 817 | }, 818 | "SharpGen.Runtime/2.1.2-beta": { 819 | "type": "package", 820 | "serviceable": true, 821 | "sha512": "sha512-nqZAjfEG1jX1ivvdZLsi6Pkt0DiOJyuOgRgldNFsmjXFPhxUbXQibofLSwuDZidL2kkmtTF8qLoRIeqeVdXgYw==", 822 | "path": "sharpgen.runtime/2.1.2-beta", 823 | "hashPath": "sharpgen.runtime.2.1.2-beta.nupkg.sha512" 824 | }, 825 | "SharpGen.Runtime.COM/2.1.2-beta": { 826 | "type": "package", 827 | "serviceable": true, 828 | "sha512": "sha512-HBCrb6HfnUWx9v5/GjJeBr5DuodZLnHlFQQYXPrQs1Hbe1c6Wd0uCXf+SJp4hW8fQNxjXEu0FgiyHGlA/SRzRw==", 829 | "path": "sharpgen.runtime.com/2.1.2-beta", 830 | "hashPath": "sharpgen.runtime.com.2.1.2-beta.nupkg.sha512" 831 | }, 832 | "SixLabors.ImageSharp/2.1.3": { 833 | "type": "package", 834 | "serviceable": true, 835 | "sha512": "sha512-8yonNRWX3vUE9k29ta0Hbfa0AEc0hbDjSH/nZ3vOTJEXmY6hLnGsjDKoz96Z+AgOsrdkAu6PdL/Ebaf70aitzw==", 836 | "path": "sixlabors.imagesharp/2.1.3", 837 | "hashPath": "sixlabors.imagesharp.2.1.3.nupkg.sha512" 838 | }, 839 | "System.Buffers/4.4.0": { 840 | "type": "package", 841 | "serviceable": true, 842 | "sha512": "sha512-AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==", 843 | "path": "system.buffers/4.4.0", 844 | "hashPath": "system.buffers.4.4.0.nupkg.sha512" 845 | }, 846 | "System.CodeDom/7.0.0": { 847 | "type": "package", 848 | "serviceable": true, 849 | "sha512": "sha512-GLltyqEsE5/3IE+zYRP5sNa1l44qKl9v+bfdMcwg+M9qnQf47wK3H0SUR/T+3N4JEQXF3vV4CSuuo0rsg+nq2A==", 850 | "path": "system.codedom/7.0.0", 851 | "hashPath": "system.codedom.7.0.0.nupkg.sha512" 852 | }, 853 | "System.Collections.Immutable/8.0.0": { 854 | "type": "package", 855 | "serviceable": true, 856 | "sha512": "sha512-AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==", 857 | "path": "system.collections.immutable/8.0.0", 858 | "hashPath": "system.collections.immutable.8.0.0.nupkg.sha512" 859 | }, 860 | "System.Configuration.ConfigurationManager/8.0.0": { 861 | "type": "package", 862 | "serviceable": true, 863 | "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", 864 | "path": "system.configuration.configurationmanager/8.0.0", 865 | "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" 866 | }, 867 | "System.Diagnostics.EventLog/8.0.0": { 868 | "type": "package", 869 | "serviceable": true, 870 | "sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==", 871 | "path": "system.diagnostics.eventlog/8.0.0", 872 | "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512" 873 | }, 874 | "System.Formats.Asn1/7.0.0": { 875 | "type": "package", 876 | "serviceable": true, 877 | "sha512": "sha512-+nfpV0afLmvJW8+pLlHxRjz3oZJw4fkyU9MMEaMhCsHi/SN9bGF9q79ROubDiwTiCHezmK0uCWkPP7tGFP/4yg==", 878 | "path": "system.formats.asn1/7.0.0", 879 | "hashPath": "system.formats.asn1.7.0.0.nupkg.sha512" 880 | }, 881 | "System.Linq.Dynamic.Core/1.3.7": { 882 | "type": "package", 883 | "serviceable": true, 884 | "sha512": "sha512-7J9oS95JCcyOtnKCr0tYUOMAj67Ee3WKal6li20vEeuQFdD7C4XuAABysp3H5dx+wmHkXuUNoxW3+U+OEsx+JQ==", 885 | "path": "system.linq.dynamic.core/1.3.7", 886 | "hashPath": "system.linq.dynamic.core.1.3.7.nupkg.sha512" 887 | }, 888 | "System.Numerics.Vectors/4.4.0": { 889 | "type": "package", 890 | "serviceable": true, 891 | "sha512": "sha512-UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ==", 892 | "path": "system.numerics.vectors/4.4.0", 893 | "hashPath": "system.numerics.vectors.4.4.0.nupkg.sha512" 894 | }, 895 | "System.Reflection.Metadata/8.0.0": { 896 | "type": "package", 897 | "serviceable": true, 898 | "sha512": "sha512-ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==", 899 | "path": "system.reflection.metadata/8.0.0", 900 | "hashPath": "system.reflection.metadata.8.0.0.nupkg.sha512" 901 | }, 902 | "System.Reflection.MetadataLoadContext/7.0.0": { 903 | "type": "package", 904 | "serviceable": true, 905 | "sha512": "sha512-z9PvtMJra5hK8n+g0wmPtaG7HQRZpTmIPRw5Z0LEemlcdQMHuTD5D7OAY/fZuuz1L9db++QOcDF0gJTLpbMtZQ==", 906 | "path": "system.reflection.metadataloadcontext/7.0.0", 907 | "hashPath": "system.reflection.metadataloadcontext.7.0.0.nupkg.sha512" 908 | }, 909 | "System.Resources.Extensions/7.0.0": { 910 | "type": "package", 911 | "serviceable": true, 912 | "sha512": "sha512-65ufm9ABXvxRkQ//hMcUDrQXbGWkC7z0WWZAvHlQ6Qv+JmrIwHH1lmX8aXlNlXpIrT9KxDpuZPqJTVqqwzMD8Q==", 913 | "path": "system.resources.extensions/7.0.0", 914 | "hashPath": "system.resources.extensions.7.0.0.nupkg.sha512" 915 | }, 916 | "System.Runtime.Caching/8.0.0": { 917 | "type": "package", 918 | "serviceable": true, 919 | "sha512": "sha512-4TmlmvGp4kzZomm7J2HJn6IIx0UUrQyhBDyb5O1XiunZlQImXW+B8b7W/sTPcXhSf9rp5NR5aDtQllwbB5elOQ==", 920 | "path": "system.runtime.caching/8.0.0", 921 | "hashPath": "system.runtime.caching.8.0.0.nupkg.sha512" 922 | }, 923 | "System.Runtime.CompilerServices.Unsafe/5.0.0": { 924 | "type": "package", 925 | "serviceable": true, 926 | "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", 927 | "path": "system.runtime.compilerservices.unsafe/5.0.0", 928 | "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" 929 | }, 930 | "System.Security.AccessControl/5.0.0": { 931 | "type": "package", 932 | "serviceable": true, 933 | "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", 934 | "path": "system.security.accesscontrol/5.0.0", 935 | "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" 936 | }, 937 | "System.Security.Cryptography.Pkcs/7.0.2": { 938 | "type": "package", 939 | "serviceable": true, 940 | "sha512": "sha512-xhFNJOcQSWhpiVGLLBQYoxAltQSQVycMkwaX1z7I7oEdT9Wr0HzSM1yeAbfoHaERIYd5s6EpLSOLs2qMchSKlA==", 941 | "path": "system.security.cryptography.pkcs/7.0.2", 942 | "hashPath": "system.security.cryptography.pkcs.7.0.2.nupkg.sha512" 943 | }, 944 | "System.Security.Cryptography.ProtectedData/8.0.0": { 945 | "type": "package", 946 | "serviceable": true, 947 | "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", 948 | "path": "system.security.cryptography.protecteddata/8.0.0", 949 | "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" 950 | }, 951 | "System.Security.Cryptography.Xml/7.0.1": { 952 | "type": "package", 953 | "serviceable": true, 954 | "sha512": "sha512-MCxBCtH0GrDuvU63ZODwQHQZPchb24pUAX3MfZ6b13qg246ZD10PRdOvay8C9HBPfCXkymUNwFPEegud7ax2zg==", 955 | "path": "system.security.cryptography.xml/7.0.1", 956 | "hashPath": "system.security.cryptography.xml.7.0.1.nupkg.sha512" 957 | }, 958 | "System.Security.Principal.Windows/5.0.0": { 959 | "type": "package", 960 | "serviceable": true, 961 | "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", 962 | "path": "system.security.principal.windows/5.0.0", 963 | "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" 964 | }, 965 | "System.Text.Encoding.CodePages/5.0.0": { 966 | "type": "package", 967 | "serviceable": true, 968 | "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", 969 | "path": "system.text.encoding.codepages/5.0.0", 970 | "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512" 971 | }, 972 | "System.Threading.Tasks.Dataflow/7.0.0": { 973 | "type": "package", 974 | "serviceable": true, 975 | "sha512": "sha512-BmSJ4b0e2nlplV/RdWVxvH7WECTHACofv06dx/JwOYc0n56eK1jIWdQKNYYsReSO4w8n1QA5stOzSQcfaVBkJg==", 976 | "path": "system.threading.tasks.dataflow/7.0.0", 977 | "hashPath": "system.threading.tasks.dataflow.7.0.0.nupkg.sha512" 978 | }, 979 | "Vanara.Core/3.4.17": { 980 | "type": "package", 981 | "serviceable": true, 982 | "sha512": "sha512-M4P620feiOJLiEo8kG5oQ3fpP1905gtus7FA7/B07LyZJ6bXrqHdoaVkt/XuMTDaDpBlQF4/JECt0EjWcem22Q==", 983 | "path": "vanara.core/3.4.17", 984 | "hashPath": "vanara.core.3.4.17.nupkg.sha512" 985 | }, 986 | "Vanara.PInvoke.ComDlg32/3.4.17": { 987 | "type": "package", 988 | "serviceable": true, 989 | "sha512": "sha512-hqJhSUO0cyxCoh1hVUYzJDeulJpWubUxJLAaNDL9jENaWao+OXGuaC7O61r8gd3rS+dH9QlSt3m4r0sP6Qx1kw==", 990 | "path": "vanara.pinvoke.comdlg32/3.4.17", 991 | "hashPath": "vanara.pinvoke.comdlg32.3.4.17.nupkg.sha512" 992 | }, 993 | "Vanara.PInvoke.DwmApi/3.4.17": { 994 | "type": "package", 995 | "serviceable": true, 996 | "sha512": "sha512-hk31bJbXut/PDJaDvKzX1rGpBSWbGZN3q46Uhf/a8py49mw8LE/7rHqiW/vybGp+qM0VgVaW/waECiZNsq4emQ==", 997 | "path": "vanara.pinvoke.dwmapi/3.4.17", 998 | "hashPath": "vanara.pinvoke.dwmapi.3.4.17.nupkg.sha512" 999 | }, 1000 | "Vanara.PInvoke.Gdi32/3.4.17": { 1001 | "type": "package", 1002 | "serviceable": true, 1003 | "sha512": "sha512-/dpW/7gjSIyRFgX11JT6hZMHldiVv7EkTOuvUglYxe9xiMA5jwLZeGbqxUf34e9P7Sk04Bb0f6cfsEYfoVXCWg==", 1004 | "path": "vanara.pinvoke.gdi32/3.4.17", 1005 | "hashPath": "vanara.pinvoke.gdi32.3.4.17.nupkg.sha512" 1006 | }, 1007 | "Vanara.PInvoke.Kernel32/3.4.17": { 1008 | "type": "package", 1009 | "serviceable": true, 1010 | "sha512": "sha512-paX5z+13cf7aKzIa8chZrVoRC1KYHJPlCKfn7XJZtyqt/dNaJvOeQdIvT5W9hyPrJVn0c25nYwJdFYMnQQJzgA==", 1011 | "path": "vanara.pinvoke.kernel32/3.4.17", 1012 | "hashPath": "vanara.pinvoke.kernel32.3.4.17.nupkg.sha512" 1013 | }, 1014 | "Vanara.PInvoke.Multimedia/3.4.17": { 1015 | "type": "package", 1016 | "serviceable": true, 1017 | "sha512": "sha512-emL/pFShKf06CvLPqqF+a/1jmTIiddJEN5AIqvnlHObNKCTa8YminPbS/DWlomD0aSm4bV0UI6/iQy1d+zCE2w==", 1018 | "path": "vanara.pinvoke.multimedia/3.4.17", 1019 | "hashPath": "vanara.pinvoke.multimedia.3.4.17.nupkg.sha512" 1020 | }, 1021 | "Vanara.PInvoke.Shared/3.4.17": { 1022 | "type": "package", 1023 | "serviceable": true, 1024 | "sha512": "sha512-pMipZE3oLA+g2VtlL3g0yrpykl6O1dm50srGY8EEq/6YchMu9RglpeaS64GV2uLmH74b6MP1sawVEmEhfZcfag==", 1025 | "path": "vanara.pinvoke.shared/3.4.17", 1026 | "hashPath": "vanara.pinvoke.shared.3.4.17.nupkg.sha512" 1027 | }, 1028 | "Vanara.PInvoke.User32/3.4.17": { 1029 | "type": "package", 1030 | "serviceable": true, 1031 | "sha512": "sha512-Cg6uDb2BtyeOxkeC/Q/9Z+PddDc21/398fdB1C2G7DoAchBYIzo01BuAGDN/3EwENa8cLugYhiMvmCkUYjyAhQ==", 1032 | "path": "vanara.pinvoke.user32/3.4.17", 1033 | "hashPath": "vanara.pinvoke.user32.3.4.17.nupkg.sha512" 1034 | }, 1035 | "Vortice.D3DCompiler/3.3.4": { 1036 | "type": "package", 1037 | "serviceable": true, 1038 | "sha512": "sha512-G0yAN1us091ulIzPfMVJeJf8JX3Tu/Wu0l4zip4HPLfVUWWxsBJF0eaEdwSPrUyz97LEG6zjHruL4sZoNRBHcA==", 1039 | "path": "vortice.d3dcompiler/3.3.4", 1040 | "hashPath": "vortice.d3dcompiler.3.3.4.nupkg.sha512" 1041 | }, 1042 | "Vortice.Direct3D11/3.3.4": { 1043 | "type": "package", 1044 | "serviceable": true, 1045 | "sha512": "sha512-ma8ysRo7WBmJwt+nNpFi0icHKIgNud6Nb0rz6XPN4V/X93nkVZiN3t96cqdy0kC0QtzYlpFccQ2d/JPrvHt6og==", 1046 | "path": "vortice.direct3d11/3.3.4", 1047 | "hashPath": "vortice.direct3d11.3.3.4.nupkg.sha512" 1048 | }, 1049 | "Vortice.DirectX/3.3.4": { 1050 | "type": "package", 1051 | "serviceable": true, 1052 | "sha512": "sha512-HWvIGYz8XtWZpJW8xGYq5gex/HUPf5u3kDY7w/5WLCXzuR+hqLB7p6tInYePnuVLvfuI/rKMMhlzmnceoP3tIw==", 1053 | "path": "vortice.directx/3.3.4", 1054 | "hashPath": "vortice.directx.3.3.4.nupkg.sha512" 1055 | }, 1056 | "Vortice.DXGI/3.3.4": { 1057 | "type": "package", 1058 | "serviceable": true, 1059 | "sha512": "sha512-toya4AmKpcVJyaZzDJnrZlYsVSQxHTTrwWYee3G4Dzthww5HTgtGluN5ciQKl0KOChbR9xjgSK8+flkw6RNdTg==", 1060 | "path": "vortice.dxgi/3.3.4", 1061 | "hashPath": "vortice.dxgi.3.3.4.nupkg.sha512" 1062 | }, 1063 | "Vortice.Mathematics/1.7.2": { 1064 | "type": "package", 1065 | "serviceable": true, 1066 | "sha512": "sha512-WUUzB3MowHdOqNfSMAms5Ovra+SKgLC4ttH1w75ra3srDGctebSg+aywm7hLdvDn592ydgdbOJN11JKsyAcX+A==", 1067 | "path": "vortice.mathematics/1.7.2", 1068 | "hashPath": "vortice.mathematics.1.7.2.nupkg.sha512" 1069 | }, 1070 | "ClickableTransparentOverlay/9.1.0": { 1071 | "type": "project", 1072 | "serviceable": false, 1073 | "sha512": "" 1074 | }, 1075 | "ExileCore2/1.0.0": { 1076 | "type": "project", 1077 | "serviceable": false, 1078 | "sha512": "" 1079 | }, 1080 | "GameOffsets2/1.0.0": { 1081 | "type": "project", 1082 | "serviceable": false, 1083 | "sha512": "" 1084 | }, 1085 | "ExileCore2.Reference/1.0.0.0": { 1086 | "type": "reference", 1087 | "serviceable": false, 1088 | "sha512": "" 1089 | } 1090 | } 1091 | } -------------------------------------------------------------------------------- /ItemFilterLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/ItemFilterLibrary.dll -------------------------------------------------------------------------------- /ItemFilterLibrary.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "frameworks": [ 6 | { 7 | "name": "Microsoft.NETCore.App", 8 | "version": "8.0.0" 9 | }, 10 | { 11 | "name": "Microsoft.WindowsDesktop.App", 12 | "version": "8.0.0" 13 | } 14 | ], 15 | "configProperties": { 16 | "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, 17 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /JM.LinqFaster.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/JM.LinqFaster.dll -------------------------------------------------------------------------------- /Loader.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0/win-x64", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": {}, 9 | ".NETCoreApp,Version=v8.0/win-x64": { 10 | "Loader/1.0.0": { 11 | "dependencies": { 12 | "LinqFaster": "1.0.0", 13 | "Microsoft.Build.Locator": "1.6.10", 14 | "Newtonsoft.Json": "13.0.3", 15 | "Serilog": "3.1.1", 16 | "Serilog.Sinks.File": "5.0.0" 17 | }, 18 | "runtime": { 19 | "Loader.dll": {} 20 | } 21 | }, 22 | "LinqFaster/1.0.0": { 23 | "runtime": { 24 | "lib/netstandard2.0/JM.LinqFaster.dll": { 25 | "assemblyVersion": "0.1.0.0", 26 | "fileVersion": "0.1.0.0" 27 | } 28 | } 29 | }, 30 | "Microsoft.Build.Locator/1.6.10": { 31 | "runtime": { 32 | "lib/net6.0/Microsoft.Build.Locator.dll": { 33 | "assemblyVersion": "1.0.0.0", 34 | "fileVersion": "1.6.10.57384" 35 | } 36 | } 37 | }, 38 | "Newtonsoft.Json/13.0.3": { 39 | "runtime": { 40 | "lib/net6.0/Newtonsoft.Json.dll": { 41 | "assemblyVersion": "13.0.0.0", 42 | "fileVersion": "13.0.3.27908" 43 | } 44 | } 45 | }, 46 | "Serilog/3.1.1": { 47 | "runtime": { 48 | "lib/net7.0/Serilog.dll": { 49 | "assemblyVersion": "2.0.0.0", 50 | "fileVersion": "3.1.1.0" 51 | } 52 | } 53 | }, 54 | "Serilog.Sinks.File/5.0.0": { 55 | "dependencies": { 56 | "Serilog": "3.1.1" 57 | }, 58 | "runtime": { 59 | "lib/net5.0/Serilog.Sinks.File.dll": { 60 | "assemblyVersion": "5.0.0.0", 61 | "fileVersion": "5.0.0.0" 62 | } 63 | } 64 | } 65 | } 66 | }, 67 | "libraries": { 68 | "Loader/1.0.0": { 69 | "type": "project", 70 | "serviceable": false, 71 | "sha512": "" 72 | }, 73 | "LinqFaster/1.0.0": { 74 | "type": "package", 75 | "serviceable": true, 76 | "sha512": "sha512-+s29tEAu8bAXqnDeWhYNrhUGDiSPzf2RsZgvGsNdMgJBa3ywp5zJzkf8EBAgd6h7I0GpG6Zw/K1SENt9jD09mA==", 77 | "path": "linqfaster/1.0.0", 78 | "hashPath": "linqfaster.1.0.0.nupkg.sha512" 79 | }, 80 | "Microsoft.Build.Locator/1.6.10": { 81 | "type": "package", 82 | "serviceable": true, 83 | "sha512": "sha512-DJhCkTGqy1LMJzEmG/2qxRTMHwdPc3WdVoGQI5o5mKHVo4dsHrCMLIyruwU/NSvPNSdvONlaf7jdFXnAMuxAuA==", 84 | "path": "microsoft.build.locator/1.6.10", 85 | "hashPath": "microsoft.build.locator.1.6.10.nupkg.sha512" 86 | }, 87 | "Newtonsoft.Json/13.0.3": { 88 | "type": "package", 89 | "serviceable": true, 90 | "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", 91 | "path": "newtonsoft.json/13.0.3", 92 | "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" 93 | }, 94 | "Serilog/3.1.1": { 95 | "type": "package", 96 | "serviceable": true, 97 | "sha512": "sha512-P6G4/4Kt9bT635bhuwdXlJ2SCqqn2nhh4gqFqQueCOr9bK/e7W9ll/IoX1Ter948cV2Z/5+5v8pAfJYUISY03A==", 98 | "path": "serilog/3.1.1", 99 | "hashPath": "serilog.3.1.1.nupkg.sha512" 100 | }, 101 | "Serilog.Sinks.File/5.0.0": { 102 | "type": "package", 103 | "serviceable": true, 104 | "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", 105 | "path": "serilog.sinks.file/5.0.0", 106 | "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" 107 | } 108 | } 109 | } -------------------------------------------------------------------------------- /Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Loader.dll -------------------------------------------------------------------------------- /Loader.dll.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | -------------------------------------------------------------------------------- /Loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Loader.exe -------------------------------------------------------------------------------- /Loader.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.WindowsDesktop.App", 11 | "version": "8.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, 16 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Microsoft.Build.Locator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Microsoft.Build.Locator.dll -------------------------------------------------------------------------------- /Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /MoreLinq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/MoreLinq.dll -------------------------------------------------------------------------------- /NAudio.Asio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/NAudio.Asio.dll -------------------------------------------------------------------------------- /NAudio.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/NAudio.Core.dll -------------------------------------------------------------------------------- /NAudio.Midi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/NAudio.Midi.dll -------------------------------------------------------------------------------- /NAudio.Wasapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/NAudio.Wasapi.dll -------------------------------------------------------------------------------- /NAudio.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/NAudio.WinForms.dll -------------------------------------------------------------------------------- /NAudio.WinMM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/NAudio.WinMM.dll -------------------------------------------------------------------------------- /NAudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/NAudio.dll -------------------------------------------------------------------------------- /Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Plugins/Compiled/DevTree/DevTree.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0/win-x64", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": {}, 9 | ".NETCoreApp,Version=v8.0/win-x64": { 10 | "DevTree/1.0.0": { 11 | "dependencies": { 12 | "ImGui.NET": "1.90.0.1", 13 | "Microsoft.CodeAnalysis.Scripting.Common": "4.11.0", 14 | "Newtonsoft.Json": "13.0.3" 15 | }, 16 | "runtime": { 17 | "DevTree.dll": {} 18 | } 19 | }, 20 | "ImGui.NET/1.90.0.1": { 21 | "dependencies": { 22 | "System.Buffers": "4.4.0", 23 | "System.Numerics.Vectors": "4.4.0", 24 | "System.Runtime.CompilerServices.Unsafe": "4.4.0" 25 | }, 26 | "runtime": { 27 | "lib/net6.0/ImGui.NET.dll": { 28 | "assemblyVersion": "1.90.0.1", 29 | "fileVersion": "1.90.0.1" 30 | } 31 | }, 32 | "native": { 33 | "runtimes/win-x64/native/cimgui.dll": { 34 | "fileVersion": "0.0.0.0" 35 | } 36 | } 37 | }, 38 | "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, 39 | "Microsoft.CodeAnalysis.Common/4.11.0": { 40 | "dependencies": { 41 | "Microsoft.CodeAnalysis.Analyzers": "3.3.4", 42 | "System.Collections.Immutable": "8.0.0", 43 | "System.Reflection.Metadata": "8.0.0" 44 | }, 45 | "runtime": { 46 | "lib/net8.0/Microsoft.CodeAnalysis.dll": { 47 | "assemblyVersion": "4.11.0.0", 48 | "fileVersion": "4.1100.24.37604" 49 | } 50 | } 51 | }, 52 | "Microsoft.CodeAnalysis.Scripting.Common/4.11.0": { 53 | "dependencies": { 54 | "Microsoft.CodeAnalysis.Analyzers": "3.3.4", 55 | "Microsoft.CodeAnalysis.Common": "4.11.0", 56 | "System.Collections.Immutable": "8.0.0", 57 | "System.Reflection.Metadata": "8.0.0" 58 | }, 59 | "runtime": { 60 | "lib/net8.0/Microsoft.CodeAnalysis.Scripting.dll": { 61 | "assemblyVersion": "4.11.0.0", 62 | "fileVersion": "4.1100.24.37604" 63 | } 64 | } 65 | }, 66 | "Newtonsoft.Json/13.0.3": { 67 | "runtime": { 68 | "lib/net6.0/Newtonsoft.Json.dll": { 69 | "assemblyVersion": "13.0.0.0", 70 | "fileVersion": "13.0.3.27908" 71 | } 72 | } 73 | }, 74 | "System.Buffers/4.4.0": {}, 75 | "System.Collections.Immutable/8.0.0": {}, 76 | "System.Numerics.Vectors/4.4.0": {}, 77 | "System.Reflection.Metadata/8.0.0": { 78 | "dependencies": { 79 | "System.Collections.Immutable": "8.0.0" 80 | } 81 | }, 82 | "System.Runtime.CompilerServices.Unsafe/4.4.0": {} 83 | } 84 | }, 85 | "libraries": { 86 | "DevTree/1.0.0": { 87 | "type": "project", 88 | "serviceable": false, 89 | "sha512": "" 90 | }, 91 | "ImGui.NET/1.90.0.1": { 92 | "type": "package", 93 | "serviceable": true, 94 | "sha512": "sha512-ZhEN7SKx5e9bbWY5BR2tNdbl7W4cJXaESwFRGo6p2pUSM9Y8yxtWq2zM4Qf8a8HYCmblHuFWtp8YcZiWlcJ3ZQ==", 95 | "path": "imgui.net/1.90.0.1", 96 | "hashPath": "imgui.net.1.90.0.1.nupkg.sha512" 97 | }, 98 | "Microsoft.CodeAnalysis.Analyzers/3.3.4": { 99 | "type": "package", 100 | "serviceable": true, 101 | "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", 102 | "path": "microsoft.codeanalysis.analyzers/3.3.4", 103 | "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" 104 | }, 105 | "Microsoft.CodeAnalysis.Common/4.11.0": { 106 | "type": "package", 107 | "serviceable": true, 108 | "sha512": "sha512-djf8ujmqYImFgB04UGtcsEhHrzVqzHowS+EEl/Yunc5LdrYrZhGBWUTXoCF0NzYXJxtfuD+UVQarWpvrNc94Qg==", 109 | "path": "microsoft.codeanalysis.common/4.11.0", 110 | "hashPath": "microsoft.codeanalysis.common.4.11.0.nupkg.sha512" 111 | }, 112 | "Microsoft.CodeAnalysis.Scripting.Common/4.11.0": { 113 | "type": "package", 114 | "serviceable": true, 115 | "sha512": "sha512-UHZIAKQcLB00N7AvMoyEYLw8qvFmGcKffEm/M2dEqYz2TWUtQW2j0+nGglbt9VwOId6TrDZGQlGjX90VNFak/w==", 116 | "path": "microsoft.codeanalysis.scripting.common/4.11.0", 117 | "hashPath": "microsoft.codeanalysis.scripting.common.4.11.0.nupkg.sha512" 118 | }, 119 | "Newtonsoft.Json/13.0.3": { 120 | "type": "package", 121 | "serviceable": true, 122 | "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", 123 | "path": "newtonsoft.json/13.0.3", 124 | "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" 125 | }, 126 | "System.Buffers/4.4.0": { 127 | "type": "package", 128 | "serviceable": true, 129 | "sha512": "sha512-AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==", 130 | "path": "system.buffers/4.4.0", 131 | "hashPath": "system.buffers.4.4.0.nupkg.sha512" 132 | }, 133 | "System.Collections.Immutable/8.0.0": { 134 | "type": "package", 135 | "serviceable": true, 136 | "sha512": "sha512-AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==", 137 | "path": "system.collections.immutable/8.0.0", 138 | "hashPath": "system.collections.immutable.8.0.0.nupkg.sha512" 139 | }, 140 | "System.Numerics.Vectors/4.4.0": { 141 | "type": "package", 142 | "serviceable": true, 143 | "sha512": "sha512-UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ==", 144 | "path": "system.numerics.vectors/4.4.0", 145 | "hashPath": "system.numerics.vectors.4.4.0.nupkg.sha512" 146 | }, 147 | "System.Reflection.Metadata/8.0.0": { 148 | "type": "package", 149 | "serviceable": true, 150 | "sha512": "sha512-ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==", 151 | "path": "system.reflection.metadata/8.0.0", 152 | "hashPath": "system.reflection.metadata.8.0.0.nupkg.sha512" 153 | }, 154 | "System.Runtime.CompilerServices.Unsafe/4.4.0": { 155 | "type": "package", 156 | "serviceable": true, 157 | "sha512": "sha512-9dLLuBxr5GNmOfl2jSMcsHuteEg32BEfUotmmUkmZjpR3RpVHE8YQwt0ow3p6prwA1ME8WqDVZqrr8z6H8G+Kw==", 158 | "path": "system.runtime.compilerservices.unsafe/4.4.0", 159 | "hashPath": "system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512" 160 | } 161 | } 162 | } -------------------------------------------------------------------------------- /Plugins/Compiled/DevTree/DevTree.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Plugins/Compiled/DevTree/DevTree.dll -------------------------------------------------------------------------------- /Plugins/Compiled/PluginUpdater/LibGit2Sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Plugins/Compiled/PluginUpdater/LibGit2Sharp.dll -------------------------------------------------------------------------------- /Plugins/Compiled/PluginUpdater/PluginUpdater.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0/win-x64", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": {}, 9 | ".NETCoreApp,Version=v8.0/win-x64": { 10 | "PluginUpdater/1.0.0": { 11 | "dependencies": { 12 | "ImGui.NET": "1.90.0.1", 13 | "LibGit2Sharp": "0.31.0", 14 | "Newtonsoft.Json": "13.0.3", 15 | "ExileCore2": "1.0.0.0", 16 | "GameOffsets2": "1.0.0.0" 17 | }, 18 | "runtime": { 19 | "PluginUpdater.dll": {} 20 | } 21 | }, 22 | "ImGui.NET/1.90.0.1": { 23 | "dependencies": { 24 | "System.Buffers": "4.4.0", 25 | "System.Numerics.Vectors": "4.4.0", 26 | "System.Runtime.CompilerServices.Unsafe": "4.4.0" 27 | }, 28 | "runtime": { 29 | "lib/net6.0/ImGui.NET.dll": { 30 | "assemblyVersion": "1.90.0.1", 31 | "fileVersion": "1.90.0.1" 32 | } 33 | }, 34 | "native": { 35 | "runtimes/win-x64/native/cimgui.dll": { 36 | "fileVersion": "0.0.0.0" 37 | } 38 | } 39 | }, 40 | "LibGit2Sharp/0.31.0": { 41 | "dependencies": { 42 | "LibGit2Sharp.NativeBinaries": "2.0.323" 43 | }, 44 | "runtime": { 45 | "lib/net8.0/LibGit2Sharp.dll": { 46 | "assemblyVersion": "0.31.0.0", 47 | "fileVersion": "0.31.0.0" 48 | } 49 | } 50 | }, 51 | "LibGit2Sharp.NativeBinaries/2.0.323": { 52 | "native": { 53 | "runtimes/win-x64/native/git2-3f4182d.dll": { 54 | "fileVersion": "0.0.0.0" 55 | } 56 | } 57 | }, 58 | "Newtonsoft.Json/13.0.3": { 59 | "runtime": { 60 | "lib/net6.0/Newtonsoft.Json.dll": { 61 | "assemblyVersion": "13.0.0.0", 62 | "fileVersion": "13.0.3.27908" 63 | } 64 | } 65 | }, 66 | "System.Buffers/4.4.0": {}, 67 | "System.Numerics.Vectors/4.4.0": {}, 68 | "System.Runtime.CompilerServices.Unsafe/4.4.0": {}, 69 | "ExileCore2/1.0.0.0": { 70 | "runtime": { 71 | "ExileCore2.dll": { 72 | "assemblyVersion": "1.0.0.0", 73 | "fileVersion": "1.0.0.0" 74 | } 75 | } 76 | }, 77 | "GameOffsets2/1.0.0.0": { 78 | "runtime": { 79 | "GameOffsets2.dll": { 80 | "assemblyVersion": "1.0.0.0", 81 | "fileVersion": "1.0.0.0" 82 | } 83 | } 84 | }, 85 | "ClickableTransparentOverlay/9.1.0.0": { 86 | "runtime": { 87 | "ClickableTransparentOverlay.dll": { 88 | "assemblyVersion": "9.1.0.0", 89 | "fileVersion": "9.1.0.0" 90 | } 91 | } 92 | }, 93 | "Serilog/2.0.0.0": { 94 | "runtime": { 95 | "Serilog.dll": { 96 | "assemblyVersion": "2.0.0.0", 97 | "fileVersion": "3.1.1.0" 98 | } 99 | } 100 | }, 101 | "Vanara.PInvoke.User32/3.4.17.0": { 102 | "runtime": { 103 | "Vanara.PInvoke.User32.dll": { 104 | "assemblyVersion": "3.4.17.0", 105 | "fileVersion": "3.4.17.0" 106 | } 107 | } 108 | }, 109 | "Microsoft.CodeAnalysis/4.11.0.0": { 110 | "runtime": { 111 | "Microsoft.CodeAnalysis.dll": { 112 | "assemblyVersion": "4.11.0.0", 113 | "fileVersion": "4.1100.24.37604" 114 | } 115 | } 116 | }, 117 | "Microsoft.CodeAnalysis.CSharp/4.11.0.0": { 118 | "runtime": { 119 | "Microsoft.CodeAnalysis.CSharp.dll": { 120 | "assemblyVersion": "4.11.0.0", 121 | "fileVersion": "4.1100.24.37604" 122 | } 123 | } 124 | }, 125 | "Microsoft.CodeAnalysis.Scripting/4.11.0.0": { 126 | "runtime": { 127 | "Microsoft.CodeAnalysis.Scripting.dll": { 128 | "assemblyVersion": "4.11.0.0", 129 | "fileVersion": "4.1100.24.37604" 130 | } 131 | } 132 | }, 133 | "SixLabors.ImageSharp/2.0.0.0": { 134 | "runtime": { 135 | "SixLabors.ImageSharp.dll": { 136 | "assemblyVersion": "2.0.0.0", 137 | "fileVersion": "2.1.3.0" 138 | } 139 | } 140 | }, 141 | "Vanara.PInvoke.Shared/3.4.17.0": { 142 | "runtime": { 143 | "Vanara.PInvoke.Shared.dll": { 144 | "assemblyVersion": "3.4.17.0", 145 | "fileVersion": "3.4.17.0" 146 | } 147 | } 148 | }, 149 | "Vanara.PInvoke.Kernel32/3.4.17.0": { 150 | "runtime": { 151 | "Vanara.PInvoke.Kernel32.dll": { 152 | "assemblyVersion": "3.4.17.0", 153 | "fileVersion": "3.4.17.0" 154 | } 155 | } 156 | }, 157 | "NAudio.Core/2.2.1.0": { 158 | "runtime": { 159 | "NAudio.Core.dll": { 160 | "assemblyVersion": "2.2.1.0", 161 | "fileVersion": "2.2.1.0" 162 | } 163 | } 164 | }, 165 | "NAudio/2.2.1.0": { 166 | "runtime": { 167 | "NAudio.dll": { 168 | "assemblyVersion": "2.2.1.0", 169 | "fileVersion": "2.2.1.0" 170 | } 171 | } 172 | }, 173 | "NAudio.Wasapi/2.2.1.0": { 174 | "runtime": { 175 | "NAudio.Wasapi.dll": { 176 | "assemblyVersion": "2.2.1.0", 177 | "fileVersion": "2.2.1.0" 178 | } 179 | } 180 | }, 181 | "MoreLinq/4.0.0.0": { 182 | "runtime": { 183 | "MoreLinq.dll": { 184 | "assemblyVersion": "4.0.0.0", 185 | "fileVersion": "4.0.0.0" 186 | } 187 | } 188 | }, 189 | "Vanara.PInvoke.DwmApi/3.4.17.0": { 190 | "runtime": { 191 | "Vanara.PInvoke.DwmApi.dll": { 192 | "assemblyVersion": "3.4.17.0", 193 | "fileVersion": "3.4.17.0" 194 | } 195 | } 196 | }, 197 | "ProcessMemoryUtilities/1.3.4.0": { 198 | "runtime": { 199 | "ProcessMemoryUtilities.dll": { 200 | "assemblyVersion": "1.3.4.0", 201 | "fileVersion": "1.3.4.0" 202 | } 203 | } 204 | }, 205 | "System.Runtime.Caching/8.0.0.0": { 206 | "runtime": { 207 | "System.Runtime.Caching.dll": { 208 | "assemblyVersion": "8.0.0.0", 209 | "fileVersion": "8.0.23.53103" 210 | } 211 | } 212 | }, 213 | "Vanara.PInvoke.Multimedia/3.4.17.0": { 214 | "runtime": { 215 | "Vanara.PInvoke.Multimedia.dll": { 216 | "assemblyVersion": "3.4.17.0", 217 | "fileVersion": "3.4.17.0" 218 | } 219 | } 220 | }, 221 | "SharpGen.Runtime/2.1.2.0": { 222 | "runtime": { 223 | "SharpGen.Runtime.dll": { 224 | "assemblyVersion": "2.1.2.0", 225 | "fileVersion": "2.1.2.0" 226 | } 227 | } 228 | }, 229 | "Serilog.Sinks.File/5.0.0.0": { 230 | "runtime": { 231 | "Serilog.Sinks.File.dll": { 232 | "assemblyVersion": "5.0.0.0", 233 | "fileVersion": "5.0.0.0" 234 | } 235 | } 236 | }, 237 | "JM.LinqFaster/0.1.0.0": { 238 | "runtime": { 239 | "JM.LinqFaster.dll": { 240 | "assemblyVersion": "0.1.0.0", 241 | "fileVersion": "0.1.0.0" 242 | } 243 | } 244 | }, 245 | "Vanara.Core/3.4.17.0": { 246 | "runtime": { 247 | "Vanara.Core.dll": { 248 | "assemblyVersion": "3.4.17.0", 249 | "fileVersion": "3.4.17.0" 250 | } 251 | } 252 | }, 253 | "NAudio.WinMM/2.2.1.0": { 254 | "runtime": { 255 | "NAudio.WinMM.dll": { 256 | "assemblyVersion": "2.2.1.0", 257 | "fileVersion": "2.2.1.0" 258 | } 259 | } 260 | }, 261 | "Microsoft.Build.Locator/1.0.0.0": { 262 | "runtime": { 263 | "Microsoft.Build.Locator.dll": { 264 | "assemblyVersion": "1.0.0.0", 265 | "fileVersion": "1.6.10.57384" 266 | } 267 | } 268 | }, 269 | "Vortice.Direct3D11/3.3.4.0": { 270 | "runtime": { 271 | "Vortice.Direct3D11.dll": { 272 | "assemblyVersion": "3.3.4.0", 273 | "fileVersion": "3.3.4.0" 274 | } 275 | } 276 | }, 277 | "Vortice.DirectX/3.3.4.0": { 278 | "runtime": { 279 | "Vortice.DirectX.dll": { 280 | "assemblyVersion": "3.3.4.0", 281 | "fileVersion": "3.3.4.0" 282 | } 283 | } 284 | }, 285 | "Vortice.Mathematics/1.7.2.0": { 286 | "runtime": { 287 | "Vortice.Mathematics.dll": { 288 | "assemblyVersion": "1.7.2.0", 289 | "fileVersion": "1.7.2.0" 290 | } 291 | } 292 | }, 293 | "Vortice.DXGI/3.3.4.0": { 294 | "runtime": { 295 | "Vortice.DXGI.dll": { 296 | "assemblyVersion": "3.3.4.0", 297 | "fileVersion": "3.3.4.0" 298 | } 299 | } 300 | }, 301 | "Vortice.D3DCompiler/3.3.4.0": { 302 | "runtime": { 303 | "Vortice.D3DCompiler.dll": { 304 | "assemblyVersion": "3.3.4.0", 305 | "fileVersion": "3.3.4.0" 306 | } 307 | } 308 | }, 309 | "Vanara.PInvoke.Gdi32/3.4.17.0": { 310 | "runtime": { 311 | "Vanara.PInvoke.Gdi32.dll": { 312 | "assemblyVersion": "3.4.17.0", 313 | "fileVersion": "3.4.17.0" 314 | } 315 | } 316 | }, 317 | "Vanara.PInvoke.ComDlg32/3.4.17.0": { 318 | "runtime": { 319 | "Vanara.PInvoke.ComDlg32.dll": { 320 | "assemblyVersion": "3.4.17.0", 321 | "fileVersion": "3.4.17.0" 322 | } 323 | } 324 | }, 325 | "SharpGen.Runtime.COM/2.1.2.0": { 326 | "runtime": { 327 | "SharpGen.Runtime.COM.dll": { 328 | "assemblyVersion": "2.1.2.0", 329 | "fileVersion": "2.1.2.0" 330 | } 331 | } 332 | } 333 | } 334 | }, 335 | "libraries": { 336 | "PluginUpdater/1.0.0": { 337 | "type": "project", 338 | "serviceable": false, 339 | "sha512": "" 340 | }, 341 | "ImGui.NET/1.90.0.1": { 342 | "type": "package", 343 | "serviceable": true, 344 | "sha512": "sha512-ZhEN7SKx5e9bbWY5BR2tNdbl7W4cJXaESwFRGo6p2pUSM9Y8yxtWq2zM4Qf8a8HYCmblHuFWtp8YcZiWlcJ3ZQ==", 345 | "path": "imgui.net/1.90.0.1", 346 | "hashPath": "imgui.net.1.90.0.1.nupkg.sha512" 347 | }, 348 | "LibGit2Sharp/0.31.0": { 349 | "type": "package", 350 | "serviceable": true, 351 | "sha512": "sha512-b3+UfV7LjKMjAHWwl7VawejiOv2gJIC6dTCA/S0puLTHACAA/Oeb5JJmWUQMeyH/T/WR/LaIK8bk2RbdFnrZvg==", 352 | "path": "libgit2sharp/0.31.0", 353 | "hashPath": "libgit2sharp.0.31.0.nupkg.sha512" 354 | }, 355 | "LibGit2Sharp.NativeBinaries/2.0.323": { 356 | "type": "package", 357 | "serviceable": true, 358 | "sha512": "sha512-Kg+fJGWhGj5qRXG0Ilj4ddhuodGXZg57yhfX6OVUDR0M2DKg/UR42/d74+qv5l1qotc1qJilo/ho7xQnULP6yA==", 359 | "path": "libgit2sharp.nativebinaries/2.0.323", 360 | "hashPath": "libgit2sharp.nativebinaries.2.0.323.nupkg.sha512" 361 | }, 362 | "Newtonsoft.Json/13.0.3": { 363 | "type": "package", 364 | "serviceable": true, 365 | "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", 366 | "path": "newtonsoft.json/13.0.3", 367 | "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" 368 | }, 369 | "System.Buffers/4.4.0": { 370 | "type": "package", 371 | "serviceable": true, 372 | "sha512": "sha512-AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==", 373 | "path": "system.buffers/4.4.0", 374 | "hashPath": "system.buffers.4.4.0.nupkg.sha512" 375 | }, 376 | "System.Numerics.Vectors/4.4.0": { 377 | "type": "package", 378 | "serviceable": true, 379 | "sha512": "sha512-UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ==", 380 | "path": "system.numerics.vectors/4.4.0", 381 | "hashPath": "system.numerics.vectors.4.4.0.nupkg.sha512" 382 | }, 383 | "System.Runtime.CompilerServices.Unsafe/4.4.0": { 384 | "type": "package", 385 | "serviceable": true, 386 | "sha512": "sha512-9dLLuBxr5GNmOfl2jSMcsHuteEg32BEfUotmmUkmZjpR3RpVHE8YQwt0ow3p6prwA1ME8WqDVZqrr8z6H8G+Kw==", 387 | "path": "system.runtime.compilerservices.unsafe/4.4.0", 388 | "hashPath": "system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512" 389 | }, 390 | "ExileCore2/1.0.0.0": { 391 | "type": "reference", 392 | "serviceable": false, 393 | "sha512": "" 394 | }, 395 | "GameOffsets2/1.0.0.0": { 396 | "type": "reference", 397 | "serviceable": false, 398 | "sha512": "" 399 | }, 400 | "ClickableTransparentOverlay/9.1.0.0": { 401 | "type": "reference", 402 | "serviceable": false, 403 | "sha512": "" 404 | }, 405 | "Serilog/2.0.0.0": { 406 | "type": "reference", 407 | "serviceable": false, 408 | "sha512": "" 409 | }, 410 | "Vanara.PInvoke.User32/3.4.17.0": { 411 | "type": "reference", 412 | "serviceable": false, 413 | "sha512": "" 414 | }, 415 | "Microsoft.CodeAnalysis/4.11.0.0": { 416 | "type": "reference", 417 | "serviceable": false, 418 | "sha512": "" 419 | }, 420 | "Microsoft.CodeAnalysis.CSharp/4.11.0.0": { 421 | "type": "reference", 422 | "serviceable": false, 423 | "sha512": "" 424 | }, 425 | "Microsoft.CodeAnalysis.Scripting/4.11.0.0": { 426 | "type": "reference", 427 | "serviceable": false, 428 | "sha512": "" 429 | }, 430 | "SixLabors.ImageSharp/2.0.0.0": { 431 | "type": "reference", 432 | "serviceable": false, 433 | "sha512": "" 434 | }, 435 | "Vanara.PInvoke.Shared/3.4.17.0": { 436 | "type": "reference", 437 | "serviceable": false, 438 | "sha512": "" 439 | }, 440 | "Vanara.PInvoke.Kernel32/3.4.17.0": { 441 | "type": "reference", 442 | "serviceable": false, 443 | "sha512": "" 444 | }, 445 | "NAudio.Core/2.2.1.0": { 446 | "type": "reference", 447 | "serviceable": false, 448 | "sha512": "" 449 | }, 450 | "NAudio/2.2.1.0": { 451 | "type": "reference", 452 | "serviceable": false, 453 | "sha512": "" 454 | }, 455 | "NAudio.Wasapi/2.2.1.0": { 456 | "type": "reference", 457 | "serviceable": false, 458 | "sha512": "" 459 | }, 460 | "MoreLinq/4.0.0.0": { 461 | "type": "reference", 462 | "serviceable": false, 463 | "sha512": "" 464 | }, 465 | "Vanara.PInvoke.DwmApi/3.4.17.0": { 466 | "type": "reference", 467 | "serviceable": false, 468 | "sha512": "" 469 | }, 470 | "ProcessMemoryUtilities/1.3.4.0": { 471 | "type": "reference", 472 | "serviceable": false, 473 | "sha512": "" 474 | }, 475 | "System.Runtime.Caching/8.0.0.0": { 476 | "type": "reference", 477 | "serviceable": false, 478 | "sha512": "" 479 | }, 480 | "Vanara.PInvoke.Multimedia/3.4.17.0": { 481 | "type": "reference", 482 | "serviceable": false, 483 | "sha512": "" 484 | }, 485 | "SharpGen.Runtime/2.1.2.0": { 486 | "type": "reference", 487 | "serviceable": false, 488 | "sha512": "" 489 | }, 490 | "Serilog.Sinks.File/5.0.0.0": { 491 | "type": "reference", 492 | "serviceable": false, 493 | "sha512": "" 494 | }, 495 | "JM.LinqFaster/0.1.0.0": { 496 | "type": "reference", 497 | "serviceable": false, 498 | "sha512": "" 499 | }, 500 | "Vanara.Core/3.4.17.0": { 501 | "type": "reference", 502 | "serviceable": false, 503 | "sha512": "" 504 | }, 505 | "NAudio.WinMM/2.2.1.0": { 506 | "type": "reference", 507 | "serviceable": false, 508 | "sha512": "" 509 | }, 510 | "Microsoft.Build.Locator/1.0.0.0": { 511 | "type": "reference", 512 | "serviceable": false, 513 | "sha512": "" 514 | }, 515 | "Vortice.Direct3D11/3.3.4.0": { 516 | "type": "reference", 517 | "serviceable": false, 518 | "sha512": "" 519 | }, 520 | "Vortice.DirectX/3.3.4.0": { 521 | "type": "reference", 522 | "serviceable": false, 523 | "sha512": "" 524 | }, 525 | "Vortice.Mathematics/1.7.2.0": { 526 | "type": "reference", 527 | "serviceable": false, 528 | "sha512": "" 529 | }, 530 | "Vortice.DXGI/3.3.4.0": { 531 | "type": "reference", 532 | "serviceable": false, 533 | "sha512": "" 534 | }, 535 | "Vortice.D3DCompiler/3.3.4.0": { 536 | "type": "reference", 537 | "serviceable": false, 538 | "sha512": "" 539 | }, 540 | "Vanara.PInvoke.Gdi32/3.4.17.0": { 541 | "type": "reference", 542 | "serviceable": false, 543 | "sha512": "" 544 | }, 545 | "Vanara.PInvoke.ComDlg32/3.4.17.0": { 546 | "type": "reference", 547 | "serviceable": false, 548 | "sha512": "" 549 | }, 550 | "SharpGen.Runtime.COM/2.1.2.0": { 551 | "type": "reference", 552 | "serviceable": false, 553 | "sha512": "" 554 | } 555 | } 556 | } -------------------------------------------------------------------------------- /Plugins/Compiled/PluginUpdater/PluginUpdater.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Plugins/Compiled/PluginUpdater/PluginUpdater.dll -------------------------------------------------------------------------------- /Plugins/Compiled/PluginUpdater/git2-3f4182d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Plugins/Compiled/PluginUpdater/git2-3f4182d.dll -------------------------------------------------------------------------------- /Plugins/exCore2.Plugin.Template.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Plugins/exCore2.Plugin.Template.2.0.0.nupkg -------------------------------------------------------------------------------- /Plugins/howto.txt: -------------------------------------------------------------------------------- 1 | You can create your own plugins using the supplied plugin template (exCore2.Plugin.Template). 2 | To do this, first install the template on your system: 3 | dotnet new install exCore2.Plugin.Template.2.0.0.nupkg 4 | 5 | Then, in a folder where you want your plugin sources, run: 6 | dotnet new exCore2Plugin -n MyPlugin 7 | A folder with all the required files will be created, study its contents and develop your plugin. 8 | To build your plugins in an IDE, you might want to set the environment variables "exapiPackage"/"exileCore2Package" to the folder where your instance of ExileCore2 is. 9 | 10 | When you want to test your plugin with HUD, simply put it in Plugins/Source like this: 11 | Plugins 12 | | 13 | ->Source 14 | | 15 | ->MyPlugin 16 | | 17 | ->MyPlugin.csproj 18 | file1.cs 19 | file2.cs 20 | ... 21 | After this, launch Loader.exe and you'll either be presented with compilation issues or the plugin will load. -------------------------------------------------------------------------------- /ProcessMemoryUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/ProcessMemoryUtilities.dll -------------------------------------------------------------------------------- /Serilog.Sinks.File.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Serilog.Sinks.File.dll -------------------------------------------------------------------------------- /Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Serilog.dll -------------------------------------------------------------------------------- /SharpGen.Runtime.COM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/SharpGen.Runtime.COM.dll -------------------------------------------------------------------------------- /SharpGen.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/SharpGen.Runtime.dll -------------------------------------------------------------------------------- /SixLabors.ImageSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/SixLabors.ImageSharp.dll -------------------------------------------------------------------------------- /Sounds/alert.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Sounds/alert.wav -------------------------------------------------------------------------------- /Sounds/attention.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Sounds/attention.wav -------------------------------------------------------------------------------- /Sounds/beast.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Sounds/beast.wav -------------------------------------------------------------------------------- /Sounds/bomb.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Sounds/bomb.wav -------------------------------------------------------------------------------- /Sounds/corrupted.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Sounds/corrupted.wav -------------------------------------------------------------------------------- /Sounds/danger.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Sounds/danger.wav -------------------------------------------------------------------------------- /Sounds/elemental.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Sounds/elemental.wav -------------------------------------------------------------------------------- /Sounds/physical.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Sounds/physical.wav -------------------------------------------------------------------------------- /Sounds/treasure.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Sounds/treasure.wav -------------------------------------------------------------------------------- /Sounds/volatile.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Sounds/volatile.wav -------------------------------------------------------------------------------- /System.Diagnostics.EventLog.Messages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/System.Diagnostics.EventLog.Messages.dll -------------------------------------------------------------------------------- /System.Linq.Dynamic.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/System.Linq.Dynamic.Core.dll -------------------------------------------------------------------------------- /System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /Vanara.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vanara.Core.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.ComDlg32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vanara.PInvoke.ComDlg32.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.DwmApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vanara.PInvoke.DwmApi.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.Gdi32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vanara.PInvoke.Gdi32.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.Kernel32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vanara.PInvoke.Kernel32.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.Multimedia.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vanara.PInvoke.Multimedia.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vanara.PInvoke.Shared.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.User32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vanara.PInvoke.User32.dll -------------------------------------------------------------------------------- /Vortice.D3DCompiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vortice.D3DCompiler.dll -------------------------------------------------------------------------------- /Vortice.DXGI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vortice.DXGI.dll -------------------------------------------------------------------------------- /Vortice.Direct3D11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vortice.Direct3D11.dll -------------------------------------------------------------------------------- /Vortice.DirectX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vortice.DirectX.dll -------------------------------------------------------------------------------- /Vortice.Mathematics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/Vortice.Mathematics.dll -------------------------------------------------------------------------------- /cimgui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/cimgui.dll -------------------------------------------------------------------------------- /fonts/unifont.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/fonts/unifont.otf -------------------------------------------------------------------------------- /sig.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/sig.bin -------------------------------------------------------------------------------- /textures/Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/textures/Icons.png -------------------------------------------------------------------------------- /textures/directions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/textures/directions.png -------------------------------------------------------------------------------- /textures/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/textures/icon.ico -------------------------------------------------------------------------------- /textures/menu-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/textures/menu-background.png -------------------------------------------------------------------------------- /textures/missing_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/textures/missing_texture.png -------------------------------------------------------------------------------- /textures/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/edae9abe8ecba9cba12cb9ca927f971382be31b8/textures/sprites.png --------------------------------------------------------------------------------