├── .gitignore ├── FortniteClient-Win64-Shipping_BE.exe ├── FortniteLauncher.exe ├── LICENSE ├── Launcher ├── Launcher.csproj ├── Program.cs └── obj │ ├── Launcher.csproj.nuget.dgspec.json │ ├── Launcher.csproj.nuget.g.props │ ├── Launcher.csproj.nuget.g.targets │ ├── Release │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Launcher.AssemblyInfo.cs │ │ ├── Launcher.AssemblyInfoInputs.cache │ │ ├── Launcher.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Launcher.GlobalUsings.g.cs │ │ ├── Launcher.assets.cache │ │ └── Launcher.csproj.AssemblyReference.cache │ ├── project.assets.json │ └── project.nuget.cache ├── README.md ├── TetsTentFry-Launcher.sln ├── TetsTentFry-Launcher ├── App.config ├── Application │ ├── AuthSructure.cs │ ├── Manifest │ │ └── app.manifest │ └── Protection Injection │ │ └── Inject.cs ├── EntryPoint │ └── Program.cs ├── Loader │ └── Winform │ │ ├── Login │ │ ├── Login.Designer.cs │ │ ├── Login.cs │ │ ├── Login.resx │ │ ├── SuccessfullyLoggedIn_MSGBOX.Designer.cs │ │ ├── SuccessfullyLoggedIn_MSGBOX.cs │ │ └── SuccessfullyLoggedIn_MSGBOX.resx │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ └── MainForm.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Discord.png │ ├── EliteSDK.dll │ ├── Guna.UI.dll │ ├── Guna.UI2.dll │ ├── New Project.png │ ├── OIP.jpg │ ├── Passwords.png │ ├── Siticone.UI.dll │ ├── Username.png │ ├── active_coding.png │ ├── active_draw.png │ ├── active_home.png │ ├── active_logout.png │ ├── active_p.png │ ├── active_settings.png │ ├── image-removebg-preview (1).png │ ├── notactive_coding.png │ ├── notactive_draw.png │ ├── notactive_draw1.png │ ├── notactive_home.png │ ├── notactive_logout.png │ ├── notactive_p.png │ ├── notactive_settings.png │ └── unactive_personic.png ├── TetsTentFry-Launcher.csproj ├── TetsTentFry-Launcher.csproj.user ├── packages.config └── static.ico └── packages ├── Json.Net.1.0.33 ├── .signature.p7s ├── Json.Net.1.0.33.nupkg └── lib │ └── netstandard2.0 │ └── Json.Net.dll ├── Microsoft.Bcl.AsyncInterfaces.7.0.0 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── Microsoft.Bcl.AsyncInterfaces.7.0.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── buildTransitive │ ├── net461 │ │ └── Microsoft.Bcl.AsyncInterfaces.targets │ └── net462 │ │ └── _._ ├── lib │ ├── net462 │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ └── Microsoft.Bcl.AsyncInterfaces.xml │ ├── netstandard2.0 │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ └── Microsoft.Bcl.AsyncInterfaces.xml │ └── netstandard2.1 │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ └── Microsoft.Bcl.AsyncInterfaces.xml └── useSharedDesignerContext.txt ├── Microsoft.Win32.Registry.4.7.0 ├── .signature.p7s ├── LICENSE.TXT ├── Microsoft.Win32.Registry.4.7.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net46 │ │ └── Microsoft.Win32.Registry.dll │ ├── net461 │ │ ├── Microsoft.Win32.Registry.dll │ │ └── Microsoft.Win32.Registry.xml │ ├── netstandard1.3 │ │ └── Microsoft.Win32.Registry.dll │ └── netstandard2.0 │ │ ├── Microsoft.Win32.Registry.dll │ │ └── Microsoft.Win32.Registry.xml ├── ref │ ├── net46 │ │ └── Microsoft.Win32.Registry.dll │ ├── net461 │ │ ├── Microsoft.Win32.Registry.dll │ │ └── Microsoft.Win32.Registry.xml │ ├── net472 │ │ ├── Microsoft.Win32.Registry.dll │ │ └── Microsoft.Win32.Registry.xml │ ├── netstandard1.3 │ │ ├── Microsoft.Win32.Registry.dll │ │ ├── Microsoft.Win32.Registry.xml │ │ ├── de │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── es │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── fr │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── it │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── ja │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── ko │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── ru │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── zh-hans │ │ │ └── Microsoft.Win32.Registry.xml │ │ └── zh-hant │ │ │ └── Microsoft.Win32.Registry.xml │ └── netstandard2.0 │ │ ├── Microsoft.Win32.Registry.dll │ │ └── Microsoft.Win32.Registry.xml ├── runtimes │ ├── unix │ │ └── lib │ │ │ └── netstandard2.0 │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ └── Microsoft.Win32.Registry.xml │ └── win │ │ └── lib │ │ ├── net46 │ │ └── Microsoft.Win32.Registry.dll │ │ ├── net461 │ │ ├── Microsoft.Win32.Registry.dll │ │ └── Microsoft.Win32.Registry.xml │ │ ├── netstandard1.3 │ │ └── Microsoft.Win32.Registry.dll │ │ └── netstandard2.0 │ │ ├── Microsoft.Win32.Registry.dll │ │ └── Microsoft.Win32.Registry.xml ├── useSharedDesignerContext.txt └── version.txt ├── Newtonsoft.Json.13.0.3 ├── .signature.p7s ├── LICENSE.md ├── Newtonsoft.Json.13.0.3.nupkg ├── README.md ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net6.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── packageIcon.png ├── System.Buffers.4.5.1 ├── .signature.p7s ├── LICENSE.TXT ├── System.Buffers.4.5.1.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net461 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.1 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ ├── netstandard2.0 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ └── uap10.0.16299 │ │ └── _._ ├── ref │ ├── net45 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.1 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ ├── netstandard2.0 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ └── uap10.0.16299 │ │ └── _._ ├── useSharedDesignerContext.txt └── version.txt ├── System.Memory.4.5.5 ├── .signature.p7s ├── LICENSE.TXT ├── System.Memory.4.5.5.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net461 │ │ ├── System.Memory.dll │ │ └── System.Memory.xml │ ├── netcoreapp2.1 │ │ └── _._ │ ├── netstandard1.1 │ │ ├── System.Memory.dll │ │ └── System.Memory.xml │ └── netstandard2.0 │ │ ├── System.Memory.dll │ │ └── System.Memory.xml ├── ref │ └── netcoreapp2.1 │ │ └── _._ ├── useSharedDesignerContext.txt └── version.txt ├── System.Numerics.Vectors.4.5.0 ├── .signature.p7s ├── LICENSE.TXT ├── System.Numerics.Vectors.4.5.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── netstandard2.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── portable-net45+win8+wp8+wpa81 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── uap10.0.16299 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── net46 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── netstandard2.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── uap10.0.16299 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── useSharedDesignerContext.txt └── version.txt ├── System.Runtime.CompilerServices.Unsafe.6.0.0 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── System.Runtime.CompilerServices.Unsafe.6.0.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── buildTransitive │ ├── netcoreapp2.0 │ │ └── System.Runtime.CompilerServices.Unsafe.targets │ └── netcoreapp3.1 │ │ └── _._ ├── lib │ ├── net461 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── net6.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── netcoreapp3.1 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ └── netstandard2.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml └── useSharedDesignerContext.txt ├── System.Security.AccessControl.4.7.0 ├── .signature.p7s ├── LICENSE.TXT ├── System.Security.AccessControl.4.7.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net46 │ │ └── System.Security.AccessControl.dll │ ├── net461 │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.AccessControl.xml │ ├── netstandard1.3 │ │ └── System.Security.AccessControl.dll │ ├── netstandard2.0 │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.AccessControl.xml │ └── uap10.0.16299 │ │ └── _._ ├── ref │ ├── net46 │ │ └── System.Security.AccessControl.dll │ ├── net461 │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.AccessControl.xml │ ├── netstandard1.3 │ │ ├── System.Security.AccessControl.dll │ │ ├── System.Security.AccessControl.xml │ │ ├── de │ │ │ └── System.Security.AccessControl.xml │ │ ├── es │ │ │ └── System.Security.AccessControl.xml │ │ ├── fr │ │ │ └── System.Security.AccessControl.xml │ │ ├── it │ │ │ └── System.Security.AccessControl.xml │ │ ├── ja │ │ │ └── System.Security.AccessControl.xml │ │ ├── ko │ │ │ └── System.Security.AccessControl.xml │ │ ├── ru │ │ │ └── System.Security.AccessControl.xml │ │ ├── zh-hans │ │ │ └── System.Security.AccessControl.xml │ │ └── zh-hant │ │ │ └── System.Security.AccessControl.xml │ ├── netstandard2.0 │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.AccessControl.xml │ └── uap10.0.16299 │ │ └── _._ ├── runtimes │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Security.AccessControl.dll │ │ ├── net461 │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.AccessControl.xml │ │ ├── netcoreapp2.0 │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.AccessControl.xml │ │ ├── netstandard1.3 │ │ └── System.Security.AccessControl.dll │ │ └── uap10.0.16299 │ │ └── _._ ├── useSharedDesignerContext.txt └── version.txt ├── System.Security.Principal.Windows.4.7.0 ├── .signature.p7s ├── LICENSE.TXT ├── System.Security.Principal.Windows.4.7.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net46 │ │ └── System.Security.Principal.Windows.dll │ ├── net461 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ ├── netstandard1.3 │ │ └── System.Security.Principal.Windows.dll │ ├── netstandard2.0 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ └── uap10.0.16299 │ │ └── _._ ├── ref │ ├── net46 │ │ └── System.Security.Principal.Windows.dll │ ├── net461 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ ├── netcoreapp3.0 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ ├── netstandard1.3 │ │ ├── System.Security.Principal.Windows.dll │ │ ├── System.Security.Principal.Windows.xml │ │ ├── de │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── es │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── fr │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── it │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── ja │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── ko │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── ru │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── zh-hans │ │ │ └── System.Security.Principal.Windows.xml │ │ └── zh-hant │ │ │ └── System.Security.Principal.Windows.xml │ ├── netstandard2.0 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ └── uap10.0.16299 │ │ └── _._ ├── runtimes │ ├── unix │ │ └── lib │ │ │ ├── netcoreapp2.0 │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ └── System.Security.Principal.Windows.xml │ │ │ └── netcoreapp2.1 │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ └── System.Security.Principal.Windows.xml │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Security.Principal.Windows.dll │ │ ├── net461 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ │ ├── netcoreapp2.0 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ │ ├── netcoreapp2.1 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ │ ├── netstandard1.3 │ │ └── System.Security.Principal.Windows.dll │ │ └── uap10.0.16299 │ │ └── _._ ├── useSharedDesignerContext.txt └── version.txt ├── System.Text.Encodings.Web.7.0.0 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── System.Text.Encodings.Web.7.0.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── buildTransitive │ ├── net461 │ │ └── System.Text.Encodings.Web.targets │ ├── net462 │ │ └── _._ │ ├── net6.0 │ │ └── _._ │ └── netcoreapp2.0 │ │ └── System.Text.Encodings.Web.targets ├── lib │ ├── net462 │ │ ├── System.Text.Encodings.Web.dll │ │ └── System.Text.Encodings.Web.xml │ ├── net6.0 │ │ ├── System.Text.Encodings.Web.dll │ │ └── System.Text.Encodings.Web.xml │ ├── net7.0 │ │ ├── System.Text.Encodings.Web.dll │ │ └── System.Text.Encodings.Web.xml │ └── netstandard2.0 │ │ ├── System.Text.Encodings.Web.dll │ │ └── System.Text.Encodings.Web.xml ├── runtimes │ └── browser │ │ └── lib │ │ ├── net6.0 │ │ ├── System.Text.Encodings.Web.dll │ │ └── System.Text.Encodings.Web.xml │ │ └── net7.0 │ │ ├── System.Text.Encodings.Web.dll │ │ └── System.Text.Encodings.Web.xml └── useSharedDesignerContext.txt ├── System.Text.Json.7.0.2 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── README.md ├── System.Text.Json.7.0.2.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── analyzers │ └── dotnet │ │ ├── roslyn3.11 │ │ └── cs │ │ │ ├── System.Text.Json.SourceGeneration.dll │ │ │ ├── cs │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── de │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── es │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── fr │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── it │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── ja │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── ko │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── pl │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── pt-BR │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── ru │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── tr │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── zh-Hans │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ └── zh-Hant │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ ├── roslyn4.0 │ │ └── cs │ │ │ ├── System.Text.Json.SourceGeneration.dll │ │ │ ├── cs │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── de │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── es │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── fr │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── it │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── ja │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── ko │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── pl │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── pt-BR │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── ru │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── tr │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ ├── zh-Hans │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ │ └── zh-Hant │ │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ └── roslyn4.4 │ │ └── cs │ │ ├── System.Text.Json.SourceGeneration.dll │ │ ├── cs │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ ├── de │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ ├── es │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ ├── fr │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ ├── it │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ ├── ja │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ ├── ko │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ ├── pl │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ ├── pt-BR │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ ├── ru │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ ├── tr │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ ├── zh-Hans │ │ └── System.Text.Json.SourceGeneration.resources.dll │ │ └── zh-Hant │ │ └── System.Text.Json.SourceGeneration.resources.dll ├── buildTransitive │ ├── net461 │ │ └── System.Text.Json.targets │ ├── net462 │ │ └── System.Text.Json.targets │ ├── net6.0 │ │ └── System.Text.Json.targets │ ├── netcoreapp2.0 │ │ └── System.Text.Json.targets │ └── netstandard2.0 │ │ └── System.Text.Json.targets ├── lib │ ├── net462 │ │ ├── System.Text.Json.dll │ │ └── System.Text.Json.xml │ ├── net6.0 │ │ ├── System.Text.Json.dll │ │ └── System.Text.Json.xml │ ├── net7.0 │ │ ├── System.Text.Json.dll │ │ └── System.Text.Json.xml │ └── netstandard2.0 │ │ ├── System.Text.Json.dll │ │ └── System.Text.Json.xml └── useSharedDesignerContext.txt ├── System.Threading.Tasks.Extensions.4.5.4 ├── .signature.p7s ├── LICENSE.TXT ├── System.Threading.Tasks.Extensions.4.5.4.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net461 │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml │ ├── netcoreapp2.1 │ │ └── _._ │ ├── netstandard1.0 │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml │ ├── netstandard2.0 │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml │ ├── portable-net45+win8+wp8+wpa81 │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── netcoreapp2.1 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── useSharedDesignerContext.txt └── version.txt └── System.ValueTuple.4.5.0 ├── .signature.p7s ├── LICENSE.TXT ├── System.ValueTuple.4.5.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib ├── MonoAndroid10 │ └── _._ ├── MonoTouch10 │ └── _._ ├── net461 │ ├── System.ValueTuple.dll │ └── System.ValueTuple.xml ├── net47 │ ├── System.ValueTuple.dll │ └── System.ValueTuple.xml ├── netcoreapp2.0 │ └── _._ ├── netstandard1.0 │ ├── System.ValueTuple.dll │ └── System.ValueTuple.xml ├── netstandard2.0 │ └── _._ ├── portable-net40+sl4+win8+wp8 │ ├── System.ValueTuple.dll │ └── System.ValueTuple.xml ├── uap10.0.16299 │ └── _._ ├── xamarinios10 │ └── _._ ├── xamarinmac20 │ └── _._ ├── xamarintvos10 │ └── _._ └── xamarinwatchos10 │ └── _._ ├── ref ├── MonoAndroid10 │ └── _._ ├── MonoTouch10 │ └── _._ ├── net461 │ └── System.ValueTuple.dll ├── net47 │ └── System.ValueTuple.dll ├── netcoreapp2.0 │ └── _._ ├── netstandard2.0 │ └── _._ ├── portable-net40+sl4+win8+wp8 │ └── System.ValueTuple.dll ├── uap10.0.16299 │ └── _._ ├── xamarinios10 │ └── _._ ├── xamarinmac20 │ └── _._ ├── xamarintvos10 │ └── _._ └── xamarinwatchos10 │ └── _._ ├── useSharedDesignerContext.txt └── version.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | -------------------------------------------------------------------------------- /FortniteClient-Win64-Shipping_BE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/FortniteClient-Win64-Shipping_BE.exe -------------------------------------------------------------------------------- /FortniteLauncher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/FortniteLauncher.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/LICENSE -------------------------------------------------------------------------------- /Launcher/Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/Launcher.csproj -------------------------------------------------------------------------------- /Launcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/Program.cs -------------------------------------------------------------------------------- /Launcher/obj/Launcher.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/obj/Launcher.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Launcher/obj/Launcher.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/obj/Launcher.csproj.nuget.g.props -------------------------------------------------------------------------------- /Launcher/obj/Launcher.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/obj/Launcher.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Launcher/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Launcher/obj/Release/net6.0/Launcher.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/obj/Release/net6.0/Launcher.AssemblyInfo.cs -------------------------------------------------------------------------------- /Launcher/obj/Release/net6.0/Launcher.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 23a694d98fd185a6f9fba4738578a9fd758d22ed 2 | -------------------------------------------------------------------------------- /Launcher/obj/Release/net6.0/Launcher.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/obj/Release/net6.0/Launcher.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Launcher/obj/Release/net6.0/Launcher.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/obj/Release/net6.0/Launcher.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Launcher/obj/Release/net6.0/Launcher.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/obj/Release/net6.0/Launcher.assets.cache -------------------------------------------------------------------------------- /Launcher/obj/Release/net6.0/Launcher.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/obj/Release/net6.0/Launcher.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Launcher/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/obj/project.assets.json -------------------------------------------------------------------------------- /Launcher/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/Launcher/obj/project.nuget.cache -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/README.md -------------------------------------------------------------------------------- /TetsTentFry-Launcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher.sln -------------------------------------------------------------------------------- /TetsTentFry-Launcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/App.config -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Application/AuthSructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Application/AuthSructure.cs -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Application/Manifest/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Application/Manifest/app.manifest -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Application/Protection Injection/Inject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Application/Protection Injection/Inject.cs -------------------------------------------------------------------------------- /TetsTentFry-Launcher/EntryPoint/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/EntryPoint/Program.cs -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Loader/Winform/Login/Login.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Loader/Winform/Login/Login.Designer.cs -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Loader/Winform/Login/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Loader/Winform/Login/Login.cs -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Loader/Winform/Login/Login.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Loader/Winform/Login/Login.resx -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Loader/Winform/Login/SuccessfullyLoggedIn_MSGBOX.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Loader/Winform/Login/SuccessfullyLoggedIn_MSGBOX.Designer.cs -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Loader/Winform/Login/SuccessfullyLoggedIn_MSGBOX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Loader/Winform/Login/SuccessfullyLoggedIn_MSGBOX.cs -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Loader/Winform/Login/SuccessfullyLoggedIn_MSGBOX.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Loader/Winform/Login/SuccessfullyLoggedIn_MSGBOX.resx -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Loader/Winform/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Loader/Winform/MainForm.Designer.cs -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Loader/Winform/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Loader/Winform/MainForm.cs -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Loader/Winform/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Loader/Winform/MainForm.resx -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Properties/Resources.resx -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Properties/Settings.settings -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/Discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/Discord.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/EliteSDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/EliteSDK.dll -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/Guna.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/Guna.UI.dll -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/Guna.UI2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/Guna.UI2.dll -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/New Project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/New Project.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/OIP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/OIP.jpg -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/Passwords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/Passwords.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/Siticone.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/Siticone.UI.dll -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/Username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/Username.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/active_coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/active_coding.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/active_draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/active_draw.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/active_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/active_home.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/active_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/active_logout.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/active_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/active_p.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/active_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/active_settings.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/image-removebg-preview (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/image-removebg-preview (1).png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/notactive_coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/notactive_coding.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/notactive_draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/notactive_draw.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/notactive_draw1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/notactive_draw1.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/notactive_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/notactive_home.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/notactive_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/notactive_logout.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/notactive_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/notactive_p.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/notactive_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/notactive_settings.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/Resources/unactive_personic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/Resources/unactive_personic.png -------------------------------------------------------------------------------- /TetsTentFry-Launcher/TetsTentFry-Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/TetsTentFry-Launcher.csproj -------------------------------------------------------------------------------- /TetsTentFry-Launcher/TetsTentFry-Launcher.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/TetsTentFry-Launcher.csproj.user -------------------------------------------------------------------------------- /TetsTentFry-Launcher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/packages.config -------------------------------------------------------------------------------- /TetsTentFry-Launcher/static.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/TetsTentFry-Launcher/static.ico -------------------------------------------------------------------------------- /packages/Json.Net.1.0.33/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Json.Net.1.0.33/.signature.p7s -------------------------------------------------------------------------------- /packages/Json.Net.1.0.33/Json.Net.1.0.33.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Json.Net.1.0.33/Json.Net.1.0.33.nupkg -------------------------------------------------------------------------------- /packages/Json.Net.1.0.33/lib/netstandard2.0/Json.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Json.Net.1.0.33/lib/netstandard2.0/Json.Net.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/Icon.png -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/Microsoft.Bcl.AsyncInterfaces.7.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/Microsoft.Bcl.AsyncInterfaces.7.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/buildTransitive/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/lib/net462/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/lib/net462/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/lib/net462/Microsoft.Bcl.AsyncInterfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/lib/net462/Microsoft.Bcl.AsyncInterfaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.7.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/Microsoft.Win32.Registry.4.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/Microsoft.Win32.Registry.4.7.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/lib/net46/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/lib/net46/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/lib/net461/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/lib/net461/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/lib/net461/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/lib/net461/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/lib/netstandard1.3/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/lib/netstandard1.3/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/lib/netstandard2.0/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/lib/netstandard2.0/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/lib/netstandard2.0/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/lib/netstandard2.0/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/net46/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/net46/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/net461/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/net461/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/net461/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/net461/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/net472/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/net472/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/net472/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/net472/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/de/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/de/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/es/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/es/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/it/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/it/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard2.0/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard2.0/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard2.0/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/ref/netstandard2.0/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/runtimes/win/lib/net46/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/runtimes/win/lib/net46/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/runtimes/win/lib/net461/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/runtimes/win/lib/net461/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/runtimes/win/lib/net461/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/runtimes/win/lib/net461/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Microsoft.Win32.Registry.4.7.0/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Registry.4.7.0/version.txt: -------------------------------------------------------------------------------- 1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48 2 | -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/Newtonsoft.Json.13.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/Newtonsoft.Json.13.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/README.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net6.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net6.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/Newtonsoft.Json.13.0.3/packageIcon.png -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/System.Buffers.4.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/System.Buffers.4.5.1.nupkg -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/lib/net461/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/lib/net461/System.Buffers.dll -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/lib/net461/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/lib/net461/System.Buffers.xml -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/lib/netstandard1.1/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/lib/netstandard1.1/System.Buffers.dll -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/lib/netstandard1.1/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/lib/netstandard1.1/System.Buffers.xml -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/lib/netstandard2.0/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/lib/netstandard2.0/System.Buffers.dll -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/lib/netstandard2.0/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/lib/netstandard2.0/System.Buffers.xml -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/ref/net45/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/ref/net45/System.Buffers.dll -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/ref/net45/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/ref/net45/System.Buffers.xml -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/ref/netstandard1.1/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/ref/netstandard1.1/System.Buffers.dll -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/ref/netstandard1.1/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/ref/netstandard1.1/System.Buffers.xml -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/ref/netstandard2.0/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/ref/netstandard2.0/System.Buffers.dll -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/ref/netstandard2.0/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Buffers.4.5.1/ref/netstandard2.0/System.Buffers.xml -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Memory.4.5.5/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Memory.4.5.5/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/System.Memory.4.5.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Memory.4.5.5/System.Memory.4.5.5.nupkg -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Memory.4.5.5/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/lib/net461/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Memory.4.5.5/lib/net461/System.Memory.dll -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/lib/net461/System.Memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Memory.4.5.5/lib/net461/System.Memory.xml -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/lib/netcoreapp2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/lib/netstandard1.1/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Memory.4.5.5/lib/netstandard1.1/System.Memory.dll -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/lib/netstandard1.1/System.Memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Memory.4.5.5/lib/netstandard1.1/System.Memory.xml -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/lib/netstandard2.0/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Memory.4.5.5/lib/netstandard2.0/System.Memory.dll -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/lib/netstandard2.0/System.Memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Memory.4.5.5/lib/netstandard2.0/System.Memory.xml -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/ref/netcoreapp2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Memory.4.5.5/version.txt: -------------------------------------------------------------------------------- 1 | 32b491939fbd125f304031c35038b1e14b4e3958 2 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/System.Numerics.Vectors.4.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/System.Numerics.Vectors.4.5.0.nupkg -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/lib/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/net46/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/lib/net46/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/lib/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/netstandard1.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/lib/netstandard1.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/netstandard2.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/lib/netstandard2.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/netstandard2.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/lib/netstandard2.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/net45/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/ref/net45/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/net45/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/ref/net45/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/ref/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/net46/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/ref/net46/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/ref/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/netstandard1.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/ref/netstandard1.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/netstandard2.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/ref/netstandard2.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/netstandard2.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Numerics.Vectors.4.5.0/ref/netstandard2.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/version.txt: -------------------------------------------------------------------------------- 1 | 30ab651fcb4354552bd4891619a0bdd81e0ebdbf 2 | -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.6.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.6.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/net461/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/net461/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/net461/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/net461/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/System.Security.AccessControl.4.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/System.Security.AccessControl.4.7.0.nupkg -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/lib/net46/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/lib/net46/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/lib/net461/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/lib/net461/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/lib/net461/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/lib/net461/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/lib/netstandard1.3/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/lib/netstandard1.3/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/lib/netstandard2.0/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/lib/netstandard2.0/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/lib/netstandard2.0/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/lib/netstandard2.0/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/net46/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/net46/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/net461/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/net461/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/net461/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/net461/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/de/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/de/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/es/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/es/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/fr/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/fr/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/it/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/it/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/ja/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/ja/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/ko/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/ko/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/ru/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/ru/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard2.0/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard2.0/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/netstandard2.0/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/ref/netstandard2.0/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/net46/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/net46/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/net461/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/net461/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/net461/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/net461/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.4.7.0/version.txt: -------------------------------------------------------------------------------- 1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48 2 | -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/System.Security.Principal.Windows.4.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/System.Security.Principal.Windows.4.7.0.nupkg -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/lib/net46/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/lib/net46/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/lib/net461/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/lib/net461/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/lib/net461/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/lib/net461/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/lib/netstandard1.3/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/lib/netstandard1.3/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/lib/netstandard2.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/lib/netstandard2.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/lib/netstandard2.0/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/lib/netstandard2.0/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/net46/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/net46/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/net461/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/net461/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/net461/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/net461/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netcoreapp3.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netcoreapp3.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netcoreapp3.0/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netcoreapp3.0/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/de/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/de/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/es/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/es/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/fr/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/fr/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/it/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/it/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/ja/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/ja/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/ko/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/ko/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/ru/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/ru/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard2.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard2.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/netstandard2.0/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard2.0/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/net46/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/net46/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/net461/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/net461/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/net461/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/net461/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Principal.Windows.4.7.0/version.txt: -------------------------------------------------------------------------------- 1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48 2 | -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/Icon.png -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/System.Text.Encodings.Web.7.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/System.Text.Encodings.Web.7.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/buildTransitive/net461/System.Text.Encodings.Web.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/buildTransitive/net461/System.Text.Encodings.Web.targets -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/buildTransitive/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/buildTransitive/net6.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/lib/net462/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/lib/net462/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/lib/net462/System.Text.Encodings.Web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/lib/net462/System.Text.Encodings.Web.xml -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/lib/net6.0/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/lib/net6.0/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/lib/net6.0/System.Text.Encodings.Web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/lib/net6.0/System.Text.Encodings.Web.xml -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/lib/net7.0/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/lib/net7.0/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/lib/net7.0/System.Text.Encodings.Web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/lib/net7.0/System.Text.Encodings.Web.xml -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/lib/netstandard2.0/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/lib/netstandard2.0/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/lib/netstandard2.0/System.Text.Encodings.Web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/lib/netstandard2.0/System.Text.Encodings.Web.xml -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Encodings.Web.7.0.0/runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml -------------------------------------------------------------------------------- /packages/System.Text.Encodings.Web.7.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/Icon.png -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/README.md -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/System.Text.Json.7.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/System.Text.Json.7.0.2.nupkg -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/buildTransitive/net461/System.Text.Json.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/buildTransitive/net461/System.Text.Json.targets -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/buildTransitive/net462/System.Text.Json.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/buildTransitive/net462/System.Text.Json.targets -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/buildTransitive/net6.0/System.Text.Json.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/buildTransitive/net6.0/System.Text.Json.targets -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/buildTransitive/netcoreapp2.0/System.Text.Json.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/buildTransitive/netcoreapp2.0/System.Text.Json.targets -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/buildTransitive/netstandard2.0/System.Text.Json.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/buildTransitive/netstandard2.0/System.Text.Json.targets -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/lib/net462/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/lib/net462/System.Text.Json.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/lib/net462/System.Text.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/lib/net462/System.Text.Json.xml -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/lib/net6.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/lib/net6.0/System.Text.Json.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/lib/net6.0/System.Text.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/lib/net6.0/System.Text.Json.xml -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/lib/net7.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/lib/net7.0/System.Text.Json.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/lib/net7.0/System.Text.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/lib/net7.0/System.Text.Json.xml -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/lib/netstandard2.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/lib/netstandard2.0/System.Text.Json.dll -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/lib/netstandard2.0/System.Text.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Text.Json.7.0.2/lib/netstandard2.0/System.Text.Json.xml -------------------------------------------------------------------------------- /packages/System.Text.Json.7.0.2/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Threading.Tasks.Extensions.4.5.4/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Threading.Tasks.Extensions.4.5.4/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/System.Threading.Tasks.Extensions.4.5.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Threading.Tasks.Extensions.4.5.4/System.Threading.Tasks.Extensions.4.5.4.nupkg -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Threading.Tasks.Extensions.4.5.4/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/net461/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/net461/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/net461/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/net461/System.Threading.Tasks.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/netcoreapp2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/netcoreapp2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/System.ValueTuple.4.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/System.ValueTuple.4.5.0.nupkg -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.xml -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.xml -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.xml -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/netstandard2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/net461/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/ref/net461/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/net47/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/ref/net47/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/netstandard2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyAlumny/fortnite-launcher-for-og-servers/HEAD/packages/System.ValueTuple.4.5.0/ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ValueTuple.4.5.0/version.txt: -------------------------------------------------------------------------------- 1 | 30ab651fcb4354552bd4891619a0bdd81e0ebdbf 2 | --------------------------------------------------------------------------------