diff --git a/Partypacker/Core/AppRegistry.cs b/Partypacker/Core/AppRegistry.cs new file mode 100644 index 0000000..2170bd9 --- /dev/null +++ b/Partypacker/Core/AppRegistry.cs @@ -0,0 +1,50 @@ +using Microsoft.Win32; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Partypacker.Core +{ + internal class AppRegistry : IDisposable + { + // credit to PsychoPast's LawinServer launcher for the following code: + // https://github.com/PsychoPast/LawinServer/blob/master/LawinServer/Core/AppRegistry.cs + // without it, fiddler-less proxying would have never been achieved + + private const string AppKey = @"SOFTWARE\Partypacker"; + + private readonly RegistryKey _registryKey; + + private readonly RegistryKey currentUser = Registry.CurrentUser; + + private RegistryKey OpenKey => currentUser.OpenSubKey(AppKey, RegistryKeyPermissionCheck.ReadWriteSubTree); + + public AppRegistry() => _registryKey = OpenKey switch + { + null => currentUser.CreateSubKey(AppKey, RegistryKeyPermissionCheck.ReadWriteSubTree), + _ => currentUser.OpenSubKey(AppKey, RegistryKeyPermissionCheck.ReadWriteSubTree) + }; + + public void UpdateRegistry(List registryInfos) => _registryKey.SetValues(registryInfos); + + public void Dispose() + { + _registryKey.Close(); + _registryKey.Dispose(); + GC.SuppressFinalize(this); + } + + public T GetRegistryValue(string name) => (T)_registryKey.GetValue(name, null); + } + + internal class RegistryInfo + { + public string Name { get; set; } + + public object Value { get; set; } + + public RegistryValueKind RegistryValueKind { get; set; } + } +} diff --git a/Partypacker/Core/Extensions.cs b/Partypacker/Core/Extensions.cs new file mode 100644 index 0000000..7fb58bc --- /dev/null +++ b/Partypacker/Core/Extensions.cs @@ -0,0 +1,20 @@ +using Microsoft.Win32; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Partypacker.Core +{ + internal static class Extensions + { + // credit to PsychoPast's LawinServer launcher for the following code: + // https://github.com/PsychoPast/LawinServer/blob/master/LawinServer/Core/Extensions.cs + // without it, fiddler-less proxying would have never been achieved + + public static void SetValues(this RegistryKey registryKey, List registryInfos) => registryInfos + .ForEach(x => registryKey + .SetValue(x.Name, x.Value, x.RegistryValueKind)); + } +} diff --git a/Partypacker/Core/Win32.cs b/Partypacker/Core/Win32.cs new file mode 100644 index 0000000..e4037fa --- /dev/null +++ b/Partypacker/Core/Win32.cs @@ -0,0 +1,90 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Runtime.InteropServices; + +namespace Partypacker.Core +{ + internal static class Win32 + { + // credit to PsychoPast's LawinServer launcher for the following code: + // https://github.com/PsychoPast/LawinServer/blob/master/LawinServer/Core/Win32.cs + // without it, fiddler-less proxying would have never been achieved + + /// + /// Adds or removes an application-defined HandlerRoutine function from the list of handler functions for the calling process. + /// + /// A pointer to the application-defined HandlerRoutine function to be added or removed. + /// If this parameter is TRUE, the handler is added; if it is FALSE, the handler is removed. + /// If the function succeeds, the return value is nonzero, else zero. + [DllImport("Kernel32")] + public static extern bool SetConsoleCtrlHandler(SetConsoleCtrlEventHandler HandlerRoutine, bool Add); + + /// + /// An application-defined function used with the SetConsoleCtrlHandler function. + /// + /// The type of control signal received by the handler. + /// If the function handles the control signal, it should return TRUE. If it returns FALSE, the next handler function in the list of handlers for this process is used. + public delegate bool SetConsoleCtrlEventHandler(CtrlType dwCtrlType); + + /// + /// The type of control signal received by the handler. + /// + public enum CtrlType + { + /// + /// A CTRL+C signal was received. + /// + CTRL_C_EVENT = 0, + + /// + /// A CTRL+BREAK signal was received. + /// + CTRL_BREAK_EVENT = 1, + + /// + /// A signal that the system sends to all processes attached to a console when the user closes the console. + /// + CTRL_CLOSE_EVENT = 2, + + /// + /// A signal that the system sends to all console processes when a user is logging off. + /// + CTRL_LOGOFF_EVENT = 5, + + /// + /// A signal that the system sends when the system is shutting down. + /// + CTRL_SHUTDOWN_EVENT = 6 + } + + /// + /// Set an internet option. + /// + /// Handle on which to set information. + /// Internet option to be set. + /// Pointer to a buffer that contains the option setting. + /// Size of the lpBuffer buffer. + /// + [DllImport("wininet.dll")] + public static extern bool InternetSetOption(IntPtr hInternet, InternetOptions dwOption, IntPtr lpBuffer, uint dwBufferLength); + + /// + /// The following option flags are used with the InternetQueryOption and InternetSetOption functions. + /// + internal enum InternetOptions : int + { + /// + /// Causes the proxy data to be reread from the registry for a handle. + /// + INTERNET_OPTION_REFRESH = 37, + + /// + /// Notifies the system that the registry settings have been changed so that it verifies the settings on the next call to InternetConnect. + /// + INTERNET_OPTION_SETTINGS_CHANGED = 39 + } + } +} diff --git a/Partypacker/Partypacker.csproj b/Partypacker/Partypacker.csproj index 887ab26..8332a03 100644 --- a/Partypacker/Partypacker.csproj +++ b/Partypacker/Partypacker.csproj @@ -8,7 +8,9 @@ + + diff --git a/Partypacker/Program.cs b/Partypacker/Program.cs index 5a7bdf4..457a434 100644 --- a/Partypacker/Program.cs +++ b/Partypacker/Program.cs @@ -1,8 +1,11 @@ -// See https://aka.ms/new-console-template for more information -using Partypacker; +using Partypacker; using Pastel; using System.Drawing; +Console.SetWindowSize(75, 20); + +Console.CursorVisible = false; + Console.WriteLine(@" _____ _ _ | __ \ | | | | @@ -14,16 +17,16 @@ Console.WriteLine(@" |___/|_| ".Pastel(Color.IndianRed)); Console.WriteLine("-----------------------------------------------------------".Pastel(Color.CadetBlue)); -Console.WriteLine("Welcome to Partypacker - what do you want to do?"); +Console.WriteLine("Welcome to Partypacker - Select an option below:"); ConsoleKeyInfo ReceivedKeyInput; int SelectedOptionIndex = 0; bool Running = true; SelectableOption[] Options = new SelectableOption[] { - new SelectableOption("Test 1", () => { Console.WriteLine("cool!"); }), - new SelectableOption("Test 2", () => { Console.WriteLine("epic!"); }), - new SelectableOption("Test 3", () => { Console.WriteLine("awesome!"); }) + new SelectableOption("Launch Fortnite", () => { Console.WriteLine("cool!"); }), + new SelectableOption("Open Dashboard", () => { Console.WriteLine("epic!"); }), + new SelectableOption("Settings", () => { Console.WriteLine("awesome!"); }) }; while (Running) @@ -31,8 +34,9 @@ while (Running) (int left, int top) = Console.GetCursorPosition(); for (int i = 0; i < Options.Length; i++) { + bool Selected = SelectedOptionIndex == i; SelectableOption Option = Options[i]; - Console.WriteLine($"{(SelectedOptionIndex == i ? ">".Pastel(Color.LimeGreen) : " ")} {Option.Name.Pastel(Color.DarkGreen)}"); + Console.WriteLine($"{(Selected ? ">".Pastel(Color.LimeGreen) : " ")} {Option.Name.Pastel(Selected ? Color.DarkGreen : Color.Gray)}"); } ReceivedKeyInput = Console.ReadKey(); diff --git a/Partypacker/Proxy/PrivateKeyDeleters.cs b/Partypacker/Proxy/PrivateKeyDeleters.cs new file mode 100644 index 0000000..7aa39f3 --- /dev/null +++ b/Partypacker/Proxy/PrivateKeyDeleters.cs @@ -0,0 +1,50 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Security.Cryptography; + +namespace Partypacker.Proxy +{ + internal class PrivateKeyDeleters + { + // credit to PsychoPast's LawinServer launcher for the following code: + // https://github.com/PsychoPast/LawinServer/blob/master/LawinServer/Proxy/PrivateKeyDeleters.cs + // without it, fiddler-less proxying would have never been achieved + + private readonly IDictionary> privateKeyDeleters = new Dictionary>(); + + public PrivateKeyDeleters() + { + AddPrivateKeyDeleter(DefaultRSACngPrivateKeyDeleter); + AddPrivateKeyDeleter(DefaultRSACryptoServiceProviderPrivateKeyDeleter); + } + + private void AddPrivateKeyDeleter(Action keyDeleter) where T : AsymmetricAlgorithm => privateKeyDeleters[typeof(T)] = (a) => keyDeleter((T)a); + + public void DeletePrivateKey(AsymmetricAlgorithm asymmetricAlgorithm) + { + for (Type type = asymmetricAlgorithm.GetType(); type != null; type = type.BaseType) + { + if (privateKeyDeleters.TryGetValue(type, out Action deleter)) + { + deleter(asymmetricAlgorithm); + return; + } + } + } + + private void DefaultRSACryptoServiceProviderPrivateKeyDeleter(RSACryptoServiceProvider rsaCryptoServiceProvider) + { + rsaCryptoServiceProvider.PersistKeyInCsp = false; + rsaCryptoServiceProvider.Clear(); + } + + private void DefaultRSACngPrivateKeyDeleter(RSACng rsaCng) + { + rsaCng.Key.Delete(); + rsaCng.Clear(); + } + } +} diff --git a/Partypacker/Proxy/Proxy.cs b/Partypacker/Proxy/Proxy.cs new file mode 100644 index 0000000..75b51f3 --- /dev/null +++ b/Partypacker/Proxy/Proxy.cs @@ -0,0 +1,202 @@ +using Fiddler; +using Microsoft.Win32; +using Partypacker.Core; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Security.Cryptography.X509Certificates; +using System.Text; +using System.Threading.Tasks; +using static Fiddler.FiddlerApplication; +using static Partypacker.Core.Win32; + +namespace Partypacker.Proxy +{ + internal class Proxy + { + // credit to PsychoPast's LawinServer launcher for the following code: + // https://github.com/PsychoPast/LawinServer/blob/master/LawinServer/Proxy/Proxy.cs + // without it, fiddler-less proxying would have never been achieved + + #region VARIABLES + private const string Proxy_Server = "ProxyServer"; + + private const string Proxy_Enable = "ProxyEnable"; + + private readonly AppRegistry appRegistry; + + private readonly string proxyKey = @$"{Registry.CurrentUser}\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings"; + + private readonly FiddlerCoreStartupSettings startupSettings; + + private (object _currentProxyServer, int _defaultUserProxyState) proxySettings; + + private (string _fiddlerCert, string _privateKey) _fiddlerCertInfos; + + private int count = 0; + #endregion + + public Proxy() : this(9999) { } //default port + + public Proxy(ushort port) + { + appRegistry = new AppRegistry(); + + GetDefaultProxySettingsValue(); + ConfigureFiddlerSettings(out bool fiddlerCertRegKeysExist); + startupSettings = new FiddlerCoreStartupSettingsBuilder() + .ListenOnPort(port) + .RegisterAsSystemProxy() + .DecryptSSL() + .OptimizeThreadPool() + .Build(); + if (!CertificateHandler(fiddlerCertRegKeysExist)) + { + //LogError("[Certificate Install Error] Could not install the certificate. Please restart the app and try again!"); + StopProxy(); + Environment.Exit(69); + } + } + + #region CONFIGURATION + private void GetDefaultProxySettingsValue() + { + proxySettings._currentProxyServer = Registry.GetValue(proxyKey, Proxy_Server, null); + proxySettings._defaultUserProxyState = (int)Registry.GetValue(proxyKey, Proxy_Enable, 0); + } + + private void ConfigureFiddlerSettings(out bool fiddlerCertRegKeysExist) + { + CONFIG.IgnoreServerCertErrors = false; + Prefs.SetBoolPref("fiddler.network.streaming.abortifclientaborts", true); + Prefs.SetBoolPref("fiddler.certmaker.PreferCertEnroll", true); + _fiddlerCertInfos._fiddlerCert = appRegistry.GetRegistryValue("FiddlerCert"); + _fiddlerCertInfos._privateKey = appRegistry.GetRegistryValue("PrivateKey"); + fiddlerCertRegKeysExist = _fiddlerCertInfos._fiddlerCert != null && _fiddlerCertInfos._privateKey != null; + if (fiddlerCertRegKeysExist) + { + Prefs.SetStringPref("fiddler.certmaker.bc.cert", _fiddlerCertInfos._fiddlerCert); + Prefs.SetStringPref("fiddler.certmaker.bc.key", _fiddlerCertInfos._privateKey); + } + } + + private bool CertificateHandler(bool valueExist) + { + if (!CertMaker.rootCertExists()) + { + if (!CertMaker.createRootCert()) + { + return false; + } + } + bool certificateSuccess = CertMaker.rootCertIsTrusted() || CertMaker.trustRootCert(); + if (!certificateSuccess) + { + return false; + } + _fiddlerCertInfos._fiddlerCert ??= Prefs.GetStringPref("fiddler.certmaker.bc.cert", null); + _fiddlerCertInfos._privateKey ??= Prefs.GetStringPref("fiddler.certmaker.bc.key", null); + if (!valueExist) + { + List registryInfo = new List() + { + new RegistryInfo() + { + Name = "FiddlerCert", + Value = _fiddlerCertInfos._fiddlerCert, + RegistryValueKind = RegistryValueKind.String + }, + new RegistryInfo() + { + Name = "PrivateKey", + Value = _fiddlerCertInfos._privateKey, + RegistryValueKind = RegistryValueKind.String + } + }; + appRegistry.UpdateRegistry(registryInfo); + } + return true; + } + #endregion + + public void StartProxy() + { + appRegistry.Dispose(); + BeforeRequest += OnBeforeRequest; + AfterSessionComplete += OnAfterSessionComplete; + Startup(startupSettings); + Console.WriteLine($"Proxy started listening on port {startupSettings.ListenPort}."); + } + + public bool StopProxy() + { + DeletePrivateKeys(); + return ResetProxySettings(); + } + + #region EVENT_HANDLERS + private void OnBeforeRequest(Session oSession) + { + if (oSession.hostname.Contains(".ol.epicgames.com")) + { + if (oSession.HTTPMethodIs("CONNECT")) + { + oSession["x-replywithtunnel"] = "FortniteTunnel"; + return; + } + oSession.fullUrl = "https://lawinserverfinal.herokuapp.com" + oSession.PathAndQuery; + + } + } + + private void OnAfterSessionComplete(Session oSession) + { + if (oSession.hostname != "lawinserverfinal.herokuapp.com") + { + return; + } + if (oSession.responseCode >= 400) + { + string fullUrl = oSession.fullUrl; + string requestHeaders = oSession.oRequest.headers.ToString(); + int responseCode = oSession.responseCode; + + /*LogError($"[Endpoint] {fullUrl}\n" + + $"[ResponseCode] {responseCode}\n" + + $"[RequestHeader] {requestHeaders}\n\n" + );*/ + } + Console.Title = $"LawinServer - Redirected {++count} endpoints"; + } + #endregion + + #region CLEANUP + private bool ResetProxySettings() + { + Registry.SetValue(proxyKey, Proxy_Server, proxySettings._currentProxyServer, RegistryValueKind.String); + if (proxySettings._defaultUserProxyState == 0) + { + Registry.SetValue(proxyKey, Proxy_Enable, 0, RegistryValueKind.DWord); + bool successfulyChanged = InternetSetOption(IntPtr.Zero, InternetOptions.INTERNET_OPTION_SETTINGS_CHANGED, IntPtr.Zero, 0); + bool successfulyRefreshed = InternetSetOption(IntPtr.Zero, InternetOptions.INTERNET_OPTION_REFRESH, IntPtr.Zero, 0); + return successfulyChanged && successfulyRefreshed; + } + return true; + } + + private void DeletePrivateKeys() + { + if (!(CertMaker.oCertProvider is ICertificateProvider4 certProvider)) + { + return; + } + PrivateKeyDeleters privateKeyDeleter = new PrivateKeyDeleters(); + IDictionary certs = certProvider.CertCache; + foreach (X509Certificate2 cert in certs.Values) + { + privateKeyDeleter.DeletePrivateKey(cert.PrivateKey); + } + } + #endregion + } +} diff --git a/Partypacker/bin/Debug/net7.0/Partypacker.deps.json b/Partypacker/bin/Debug/net7.0/Partypacker.deps.json index ad58db3..0a48685 100644 --- a/Partypacker/bin/Debug/net7.0/Partypacker.deps.json +++ b/Partypacker/bin/Debug/net7.0/Partypacker.deps.json @@ -8,12 +8,58 @@ ".NETCoreApp,Version=v7.0": { "Partypacker/1.0.0": { "dependencies": { - "Pastel": "5.0.0" + "FiddlerCore.Trial": "5.0.2", + "Pastel": "5.0.0", + "System.ComponentModel.Composition": "8.0.0" }, "runtime": { "Partypacker.dll": {} } }, + "BCMakeCert/2.0.9": { + "runtime": { + "lib/netstandard2.0/BCMakeCert.dll": { + "assemblyVersion": "2.0.9.0", + "fileVersion": "2.0.9.0" + } + } + }, + "DotNetZip/1.13.8": { + "dependencies": { + "System.Security.Permissions": "4.5.0", + "System.Text.Encoding.CodePages": "4.5.0", + "System.Text.Encoding.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/DotNetZip.dll": { + "assemblyVersion": "1.13.8.0", + "fileVersion": "1.13.8.0" + } + } + }, + "FiddlerCore.Trial/5.0.2": { + "dependencies": { + "BCMakeCert": "2.0.9", + "DotNetZip": "1.13.8", + "Microsoft.Win32.Registry": "4.5.0", + "System.Configuration.ConfigurationManager": "4.4.1", + "Telerik.NetworkConnections": "0.2.0" + }, + "runtime": { + "lib/netstandard2.0/FiddlerCore.dll": { + "assemblyVersion": "5.0.2.0", + "fileVersion": "5.0.2.0" + } + } + }, + "Microsoft.NETCore.Platforms/2.0.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.5.0": { + "dependencies": { + "System.Security.AccessControl": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + } + }, "Pastel/5.0.0": { "runtime": { "lib/net6.0/Pastel.dll": { @@ -21,6 +67,103 @@ "fileVersion": "5.0.0.0" } } + }, + "System.ComponentModel.Composition/8.0.0": { + "runtime": { + "lib/net7.0/System.ComponentModel.Composition.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Configuration.ConfigurationManager/4.4.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.25921.2" + } + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/4.5.0": {}, + "System.Security.AccessControl/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.25519.3" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Security.Permissions/4.5.0": { + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Security.Principal.Windows/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "Telerik.NetworkConnections/0.2.0": { + "dependencies": { + "Microsoft.Win32.Registry": "4.5.0", + "System.ComponentModel.Composition": "8.0.0" + }, + "runtime": { + "lib/netstandard2.0/Telerik.NetworkConnections.dll": { + "assemblyVersion": "0.2.0.0", + "fileVersion": "0.2.0.0" + } + } } } }, @@ -30,12 +173,138 @@ "serviceable": false, "sha512": "" }, + "BCMakeCert/2.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GBAneZZniACYigSU8FuK7CBav+sZ9eHQWyt10Qgqyxp1RULO9fGv2WYfLOYHhbdg+hs/sU+OLCPwMwzGqZOCVg==", + "path": "bcmakecert/2.0.9", + "hashPath": "bcmakecert.2.0.9.nupkg.sha512" + }, + "DotNetZip/1.13.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-r4oFZLHuxhOw4kr19nuVBQe+r0OMqqO2VZw5p6uW4ANZM/bPAuWBkUSo+P1R0KT7yYXpuT/wH7D9o59lPtCPrA==", + "path": "dotnetzip/1.13.8", + "hashPath": "dotnetzip.1.13.8.nupkg.sha512" + }, + "FiddlerCore.Trial/5.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysifju0hXE+HQCmoYvZHIrp/YPXBtdJIz5dUo9JeMyXyB1v1vjm1ViTdvXMwZDiLlfxBK2JfaN5UBGCsuis4yg==", + "path": "fiddlercore.trial/5.0.2", + "hashPath": "fiddlercore.trial.5.0.2.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "path": "microsoft.netcore.platforms/2.0.0", + "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==", + "path": "microsoft.win32.registry/4.5.0", + "hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512" + }, "Pastel/5.0.0": { "type": "package", "serviceable": true, "sha512": "sha512-678i15lh+oAKZs2ihgiDVmDbiprEbji2L/w+jIcTkZpkdJ+UgrhToQTQN3Mw0bfM+Yx3cIBA3BS7iKT2poqBQg==", "path": "pastel/5.0.0", "hashPath": "pastel.5.0.0.nupkg.sha512" + }, + "System.ComponentModel.Composition/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bGhUX5BTivJ9Wax0qnJy7uGq7dn/TQkEpJ2Fpu1etg8dbPwyDkUzNPc1d3I2/jUr9y4wDI3a1dkSmi8X21Pzbw==", + "path": "system.componentmodel.composition/8.0.0", + "hashPath": "system.componentmodel.composition.8.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==", + "path": "system.configuration.configurationmanager/4.4.1", + "hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YrzNWduCDHhUaSRBxHxL11UkM2fD6y8hITHis4/LbQZ6vj3vdRjoH3IoPWWC9uDXK2wHIqn+b5gv1Np/VKyM1g==", + "path": "system.runtime.compilerservices.unsafe/4.5.0", + "hashPath": "system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "path": "system.security.accesscontrol/4.5.0", + "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==", + "path": "system.security.cryptography.protecteddata/4.4.0", + "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512" + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "path": "system.security.permissions/4.5.0", + "hashPath": "system.security.permissions.4.5.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "path": "system.security.principal.windows/4.5.0", + "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==", + "path": "system.text.encoding.codepages/4.5.0", + "hashPath": "system.text.encoding.codepages.4.5.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "Telerik.NetworkConnections/0.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CuRCESra/miCNvFSniRhvG1d8Abx0oI7/rYXvb/panClfQvq1WfXaMWrnXlD8Zdi8wpgwSxTDX+XIimCeYUxFw==", + "path": "telerik.networkconnections/0.2.0", + "hashPath": "telerik.networkconnections.0.2.0.nupkg.sha512" } } } \ No newline at end of file diff --git a/Partypacker/bin/Debug/net7.0/Partypacker.dll b/Partypacker/bin/Debug/net7.0/Partypacker.dll index 08fbbea..973b70e 100644 Binary files a/Partypacker/bin/Debug/net7.0/Partypacker.dll and b/Partypacker/bin/Debug/net7.0/Partypacker.dll differ diff --git a/Partypacker/bin/Debug/net7.0/Partypacker.exe b/Partypacker/bin/Debug/net7.0/Partypacker.exe index 7191902..a1adbb3 100644 Binary files a/Partypacker/bin/Debug/net7.0/Partypacker.exe and b/Partypacker/bin/Debug/net7.0/Partypacker.exe differ diff --git a/Partypacker/bin/Debug/net7.0/Partypacker.pdb b/Partypacker/bin/Debug/net7.0/Partypacker.pdb index 6363d0c..df969be 100644 Binary files a/Partypacker/bin/Debug/net7.0/Partypacker.pdb and b/Partypacker/bin/Debug/net7.0/Partypacker.pdb differ diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.AssemblyInfo.cs b/Partypacker/obj/Debug/net7.0/Partypacker.AssemblyInfo.cs index 60a246c..2a647d4 100644 --- a/Partypacker/obj/Debug/net7.0/Partypacker.AssemblyInfo.cs +++ b/Partypacker/obj/Debug/net7.0/Partypacker.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Partypacker")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+fbb76bb36e64cbc7732549c16c8cae25276a6c9d")] [assembly: System.Reflection.AssemblyProductAttribute("Partypacker")] [assembly: System.Reflection.AssemblyTitleAttribute("Partypacker")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.AssemblyInfoInputs.cache b/Partypacker/obj/Debug/net7.0/Partypacker.AssemblyInfoInputs.cache index 84ff77d..267c9ba 100644 --- a/Partypacker/obj/Debug/net7.0/Partypacker.AssemblyInfoInputs.cache +++ b/Partypacker/obj/Debug/net7.0/Partypacker.AssemblyInfoInputs.cache @@ -1 +1 @@ -6ea672c25746cdec1ebb8d26e79b839312248c61134c9182efac4b25bbf430e8 +90a4887af6b73bb024994ab00d412a5419ac2c1de9671c3188e568323d6a855d diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.GeneratedMSBuildEditorConfig.editorconfig b/Partypacker/obj/Debug/net7.0/Partypacker.GeneratedMSBuildEditorConfig.editorconfig index 72df7ab..3024f76 100644 --- a/Partypacker/obj/Debug/net7.0/Partypacker.GeneratedMSBuildEditorConfig.editorconfig +++ b/Partypacker/obj/Debug/net7.0/Partypacker.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Partypacker -build_property.ProjectDir = D:\Projects\DotNET\Partypacker\Partypacker\ +build_property.ProjectDir = C:\Users\shady\Desktop\Partypacker\Partypacker\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.assets.cache b/Partypacker/obj/Debug/net7.0/Partypacker.assets.cache index a74727b..0082c5e 100644 Binary files a/Partypacker/obj/Debug/net7.0/Partypacker.assets.cache and b/Partypacker/obj/Debug/net7.0/Partypacker.assets.cache differ diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.csproj.AssemblyReference.cache b/Partypacker/obj/Debug/net7.0/Partypacker.csproj.AssemblyReference.cache index 0fd6517..20c2651 100644 Binary files a/Partypacker/obj/Debug/net7.0/Partypacker.csproj.AssemblyReference.cache and b/Partypacker/obj/Debug/net7.0/Partypacker.csproj.AssemblyReference.cache differ diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.csproj.CopyComplete b/Partypacker/obj/Debug/net7.0/Partypacker.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.csproj.CoreCompileInputs.cache b/Partypacker/obj/Debug/net7.0/Partypacker.csproj.CoreCompileInputs.cache index d821780..87a1da6 100644 --- a/Partypacker/obj/Debug/net7.0/Partypacker.csproj.CoreCompileInputs.cache +++ b/Partypacker/obj/Debug/net7.0/Partypacker.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -b93e4be91f5f591f1cdbd8e45b389f3952336f5e5ba35bdcd94b5a94e18e074b +93a6d38263c9444725d254e865343ad12041a05736bdad69484a499f486f1c5a diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.csproj.FileListAbsolute.txt b/Partypacker/obj/Debug/net7.0/Partypacker.csproj.FileListAbsolute.txt index d69e8ab..99fb06e 100644 --- a/Partypacker/obj/Debug/net7.0/Partypacker.csproj.FileListAbsolute.txt +++ b/Partypacker/obj/Debug/net7.0/Partypacker.csproj.FileListAbsolute.txt @@ -15,3 +15,31 @@ D:\Projects\DotNET\Partypacker\Partypacker\obj\Debug\net7.0\ref\Partypacker.dll D:\Projects\DotNET\Partypacker\Partypacker\bin\Debug\net7.0\Pastel.dll D:\Projects\DotNET\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.csproj.AssemblyReference.cache D:\Projects\DotNET\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.csproj.CopyComplete +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Partypacker.exe +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Partypacker.deps.json +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Partypacker.runtimeconfig.json +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Partypacker.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Partypacker.pdb +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Pastel.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.csproj.AssemblyReference.cache +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.AssemblyInfoInputs.cache +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.AssemblyInfo.cs +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.csproj.CoreCompileInputs.cache +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.sourcelink.json +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\refint\Partypacker.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.pdb +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypacker.genruntimeconfig.cache +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\ref\Partypacker.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\obj\Debug\net7.0\Partypac.7577FB8A.Up2Date +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\BasicFormatsForCore.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\BCMakeCert.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\DotNetZip.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\FiddlerCore.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\System.ComponentModel.Composition.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\System.Security.Permissions.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\Telerik.NetworkConnections.dll +C:\Users\shady\Desktop\Partypacker\Partypacker\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.dll b/Partypacker/obj/Debug/net7.0/Partypacker.dll index 08fbbea..973b70e 100644 Binary files a/Partypacker/obj/Debug/net7.0/Partypacker.dll and b/Partypacker/obj/Debug/net7.0/Partypacker.dll differ diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.genruntimeconfig.cache b/Partypacker/obj/Debug/net7.0/Partypacker.genruntimeconfig.cache index 40f2a4b..3765ee1 100644 --- a/Partypacker/obj/Debug/net7.0/Partypacker.genruntimeconfig.cache +++ b/Partypacker/obj/Debug/net7.0/Partypacker.genruntimeconfig.cache @@ -1 +1 @@ -43b60c27c2dcec51aa77e028c77a01ff31dd695892a54f75e54a0c3ba7d5dda0 +682a6f0f49d576867bc2dcde668974c53d80eca6b0d957eed6fb6be6c2992f5e diff --git a/Partypacker/obj/Debug/net7.0/Partypacker.pdb b/Partypacker/obj/Debug/net7.0/Partypacker.pdb index 6363d0c..df969be 100644 Binary files a/Partypacker/obj/Debug/net7.0/Partypacker.pdb and b/Partypacker/obj/Debug/net7.0/Partypacker.pdb differ diff --git a/Partypacker/obj/Debug/net7.0/apphost.exe b/Partypacker/obj/Debug/net7.0/apphost.exe index 7191902..a1adbb3 100644 Binary files a/Partypacker/obj/Debug/net7.0/apphost.exe and b/Partypacker/obj/Debug/net7.0/apphost.exe differ diff --git a/Partypacker/obj/Debug/net7.0/ref/Partypacker.dll b/Partypacker/obj/Debug/net7.0/ref/Partypacker.dll index be4bb32..a53f534 100644 Binary files a/Partypacker/obj/Debug/net7.0/ref/Partypacker.dll and b/Partypacker/obj/Debug/net7.0/ref/Partypacker.dll differ diff --git a/Partypacker/obj/Debug/net7.0/refint/Partypacker.dll b/Partypacker/obj/Debug/net7.0/refint/Partypacker.dll index be4bb32..a53f534 100644 Binary files a/Partypacker/obj/Debug/net7.0/refint/Partypacker.dll and b/Partypacker/obj/Debug/net7.0/refint/Partypacker.dll differ diff --git a/Partypacker/obj/Partypacker.csproj.nuget.dgspec.json b/Partypacker/obj/Partypacker.csproj.nuget.dgspec.json index 72def15..ac081a0 100644 --- a/Partypacker/obj/Partypacker.csproj.nuget.dgspec.json +++ b/Partypacker/obj/Partypacker.csproj.nuget.dgspec.json @@ -1,23 +1,23 @@ { "format": 1, "restore": { - "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj": {} + "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj": {} }, "projects": { - "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj": { + "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj", + "projectUniqueName": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj", "projectName": "Partypacker", - "projectPath": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj", - "packagesPath": "C:\\Users\\McMistrzYT\\.nuget\\packages\\", - "outputPath": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\obj\\", + "projectPath": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj", + "packagesPath": "C:\\Users\\shady\\.nuget\\packages\\", + "outputPath": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\McMistrzYT\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\shady\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -25,8 +25,7 @@ "net7.0" ], "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} + "C:\\Users\\shady\\Desktop\\Partypacker\\.pkg": {} }, "frameworks": { "net7.0": { @@ -38,15 +37,28 @@ "warnAsError": [ "NU1605" ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" } }, "frameworks": { "net7.0": { "targetAlias": "net7.0", "dependencies": { + "FiddlerCore.Trial": { + "target": "Package", + "version": "[5.0.2, )" + }, "Pastel": { "target": "Package", "version": "[5.0.0, )" + }, + "System.ComponentModel.Composition": { + "target": "Package", + "version": "[8.0.0, )" } }, "imports": [ @@ -65,7 +77,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200-preview.23624.5\\RuntimeIdentifierGraph.json" } } } diff --git a/Partypacker/obj/Partypacker.csproj.nuget.g.props b/Partypacker/obj/Partypacker.csproj.nuget.g.props index dc4c6ef..b25dbb1 100644 --- a/Partypacker/obj/Partypacker.csproj.nuget.g.props +++ b/Partypacker/obj/Partypacker.csproj.nuget.g.props @@ -5,12 +5,24 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\McMistrzYT\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\shady\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.8.0 + 6.9.0 - + + + + FiddlerCore.Trial + 5.0.2 + Content + false + PreserveNewest + BasicFormatsForCore.dll + True + BasicFormatsForCore.dll + + \ No newline at end of file diff --git a/Partypacker/obj/project.assets.json b/Partypacker/obj/project.assets.json index fd60de5..ff9d275 100644 --- a/Partypacker/obj/project.assets.json +++ b/Partypacker/obj/project.assets.json @@ -2,6 +2,104 @@ "version": 3, "targets": { "net7.0": { + "BCMakeCert/2.0.9": { + "type": "package", + "compile": { + "lib/netstandard2.0/BCMakeCert.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BCMakeCert.dll": {} + } + }, + "DotNetZip/1.13.8": { + "type": "package", + "dependencies": { + "System.Security.Permissions": "[4.5.0, 5.0.0)", + "System.Text.Encoding.CodePages": "[4.5.0, 5.0.0)", + "System.Text.Encoding.Extensions": "[4.3.0, 5.0.0)" + }, + "compile": { + "lib/netstandard2.0/DotNetZip.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/DotNetZip.dll": { + "related": ".pdb;.xml" + } + } + }, + "FiddlerCore.Trial/5.0.2": { + "type": "package", + "dependencies": { + "BCMakeCert": "2.0.9", + "DotNetZip": "1.13.4", + "Microsoft.Win32.Registry": "4.5.0", + "System.Configuration.ConfigurationManager": "4.4.0", + "Telerik.NetworkConnections": "0.2.0" + }, + "compile": { + "lib/netstandard2.0/FiddlerCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/FiddlerCore.dll": { + "related": ".xml" + } + }, + "contentFiles": { + "contentFiles/any/netstandard2.0/BasicFormatsForCore.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BasicFormatsForCore.dll" + } + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Registry/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "Pastel/5.0.0": { "type": "package", "compile": { @@ -14,10 +112,336 @@ "related": ".xml" } } + }, + "System.ComponentModel.Composition/8.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.ComponentModel.Composition.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.ComponentModel.Composition.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Configuration.ConfigurationManager/4.4.1": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + } + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { + "related": ".xml" + } + } + }, + "Telerik.NetworkConnections/0.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.5.0", + "System.ComponentModel.Composition": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/Telerik.NetworkConnections.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Telerik.NetworkConnections.dll": { + "related": ".xml" + } + } } } }, "libraries": { + "BCMakeCert/2.0.9": { + "sha512": "GBAneZZniACYigSU8FuK7CBav+sZ9eHQWyt10Qgqyxp1RULO9fGv2WYfLOYHhbdg+hs/sU+OLCPwMwzGqZOCVg==", + "type": "package", + "path": "bcmakecert/2.0.9", + "files": [ + ".nupkg.metadata", + "EULA.txt", + "THIRD-PARTY-NOTICES.txt", + "bcmakecert.2.0.9.nupkg.sha512", + "bcmakecert.nuspec", + "icon.png", + "lib/net40/BCMakeCert.dll", + "lib/netstandard2.0/BCMakeCert.dll" + ] + }, + "DotNetZip/1.13.8": { + "sha512": "r4oFZLHuxhOw4kr19nuVBQe+r0OMqqO2VZw5p6uW4ANZM/bPAuWBkUSo+P1R0KT7yYXpuT/wH7D9o59lPtCPrA==", + "type": "package", + "path": "dotnetzip/1.13.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnetzip.1.13.8.nupkg.sha512", + "dotnetzip.nuspec", + "lib/net40/DotNetZip.dll", + "lib/net40/DotNetZip.pdb", + "lib/net40/DotNetZip.xml", + "lib/netstandard2.0/DotNetZip.dll", + "lib/netstandard2.0/DotNetZip.pdb", + "lib/netstandard2.0/DotNetZip.xml" + ] + }, + "FiddlerCore.Trial/5.0.2": { + "sha512": "ysifju0hXE+HQCmoYvZHIrp/YPXBtdJIz5dUo9JeMyXyB1v1vjm1ViTdvXMwZDiLlfxBK2JfaN5UBGCsuis4yg==", + "type": "package", + "path": "fiddlercore.trial/5.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.txt", + "THIRD-PARTY-NOTICES.txt", + "content/BasicFormatsForCore.dll", + "contentFiles/any/net40/BasicFormatsForCore.dll", + "contentFiles/any/net45/BasicFormatsForCore.dll", + "contentFiles/any/netstandard2.0/BasicFormatsForCore.dll", + "fiddlercore.trial.5.0.2.nupkg.sha512", + "fiddlercore.trial.nuspec", + "icon.png", + "lib/net40/FiddlerCore.dll", + "lib/net40/FiddlerCore.pdb", + "lib/net40/FiddlerCore.xml", + "lib/net45/FiddlerCore.dll", + "lib/net45/FiddlerCore.pdb", + "lib/net45/FiddlerCore.xml", + "lib/netstandard2.0/FiddlerCore.dll", + "lib/netstandard2.0/FiddlerCore.xml" + ] + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Registry/4.5.0": { + "sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==", + "type": "package", + "path": "microsoft.win32.registry/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.5.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "Pastel/5.0.0": { "sha512": "678i15lh+oAKZs2ihgiDVmDbiprEbji2L/w+jIcTkZpkdJ+UgrhToQTQN3Mw0bfM+Yx3cIBA3BS7iKT2poqBQg==", "type": "package", @@ -37,31 +461,548 @@ "pastel.5.0.0.nupkg.sha512", "pastel.nuspec" ] + }, + "System.ComponentModel.Composition/8.0.0": { + "sha512": "bGhUX5BTivJ9Wax0qnJy7uGq7dn/TQkEpJ2Fpu1etg8dbPwyDkUzNPc1d3I2/jUr9y4wDI3a1dkSmi8X21Pzbw==", + "type": "package", + "path": "system.componentmodel.composition/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.ComponentModel.Composition.targets", + "lib/net462/_._", + "lib/net6.0/System.ComponentModel.Composition.dll", + "lib/net6.0/System.ComponentModel.Composition.xml", + "lib/net7.0/System.ComponentModel.Composition.dll", + "lib/net7.0/System.ComponentModel.Composition.xml", + "lib/net8.0/System.ComponentModel.Composition.dll", + "lib/net8.0/System.ComponentModel.Composition.xml", + "lib/netstandard2.0/System.ComponentModel.Composition.dll", + "lib/netstandard2.0/System.ComponentModel.Composition.xml", + "system.componentmodel.composition.8.0.0.nupkg.sha512", + "system.componentmodel.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Configuration.ConfigurationManager/4.4.1": { + "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==", + "type": "package", + "path": "system.configuration.configurationmanager/4.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.4.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.5.0": { + "sha512": "YrzNWduCDHhUaSRBxHxL11UkM2fD6y8hITHis4/LbQZ6vj3vdRjoH3IoPWWC9uDXK2wHIqn+b5gv1Np/VKyM1g==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/uap10.0.16300/_._", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/uap10.0.16300/_._", + "system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.AccessControl/4.5.0": { + "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "type": "package", + "path": "system.security.accesscontrol/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.5.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/4.5.0": { + "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "type": "package", + "path": "system.security.permissions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.5.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.5.0": { + "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "type": "package", + "path": "system.security.principal.windows/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.5.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.5.0": { + "sha512": "S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==", + "type": "package", + "path": "system.text.encoding.codepages/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", + "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", + "ref/netstandard2.0/System.Text.Encoding.CodePages.dll", + "ref/netstandard2.0/System.Text.Encoding.CodePages.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.5.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "Telerik.NetworkConnections/0.2.0": { + "sha512": "CuRCESra/miCNvFSniRhvG1d8Abx0oI7/rYXvb/panClfQvq1WfXaMWrnXlD8Zdi8wpgwSxTDX+XIimCeYUxFw==", + "type": "package", + "path": "telerik.networkconnections/0.2.0", + "files": [ + ".nupkg.metadata", + "EULA.txt", + "THIRD-PARTY-NOTICES.txt", + "icon.png", + "lib/net40/Telerik.NetworkConnections.dll", + "lib/net40/Telerik.NetworkConnections.pdb", + "lib/net40/Telerik.NetworkConnections.xml", + "lib/netstandard2.0/Telerik.NetworkConnections.dll", + "lib/netstandard2.0/Telerik.NetworkConnections.xml", + "telerik.networkconnections.0.2.0.nupkg.sha512", + "telerik.networkconnections.nuspec" + ] } }, "projectFileDependencyGroups": { "net7.0": [ - "Pastel >= 5.0.0" + "FiddlerCore.Trial >= 5.0.2", + "Pastel >= 5.0.0", + "System.ComponentModel.Composition >= 8.0.0" ] }, "packageFolders": { - "C:\\Users\\McMistrzYT\\.nuget\\packages\\": {}, + "C:\\Users\\shady\\.nuget\\packages\\": {}, "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj", + "projectUniqueName": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj", "projectName": "Partypacker", - "projectPath": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj", - "packagesPath": "C:\\Users\\McMistrzYT\\.nuget\\packages\\", - "outputPath": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\obj\\", + "projectPath": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj", + "packagesPath": "C:\\Users\\shady\\.nuget\\packages\\", + "outputPath": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\McMistrzYT\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\shady\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -69,8 +1010,7 @@ "net7.0" ], "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} + "C:\\Users\\shady\\Desktop\\Partypacker\\.pkg": {} }, "frameworks": { "net7.0": { @@ -82,15 +1022,28 @@ "warnAsError": [ "NU1605" ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" } }, "frameworks": { "net7.0": { "targetAlias": "net7.0", "dependencies": { + "FiddlerCore.Trial": { + "target": "Package", + "version": "[5.0.2, )" + }, "Pastel": { "target": "Package", "version": "[5.0.0, )" + }, + "System.ComponentModel.Composition": { + "target": "Package", + "version": "[8.0.0, )" } }, "imports": [ @@ -109,8 +1062,30 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200-preview.23624.5\\RuntimeIdentifierGraph.json" } } - } + }, + "logs": [ + { + "code": "NU1603", + "level": "Warning", + "warningLevel": 1, + "message": "FiddlerCore.Trial 5.0.2 depends on DotNetZip (>= 1.13.4) but DotNetZip 1.13.4 was not found. An approximate best match of DotNetZip 1.13.8 was resolved.", + "libraryId": "DotNetZip", + "targetGraphs": [ + "net7.0" + ] + }, + { + "code": "NU1603", + "level": "Warning", + "warningLevel": 1, + "message": "FiddlerCore.Trial 5.0.2 depends on System.Configuration.ConfigurationManager (>= 4.4.0) but System.Configuration.ConfigurationManager 4.4.0 was not found. An approximate best match of System.Configuration.ConfigurationManager 4.4.1 was resolved.", + "libraryId": "System.Configuration.ConfigurationManager", + "targetGraphs": [ + "net7.0" + ] + } + ] } \ No newline at end of file diff --git a/Partypacker/obj/project.nuget.cache b/Partypacker/obj/project.nuget.cache index 2a4f67c..0d197d5 100644 --- a/Partypacker/obj/project.nuget.cache +++ b/Partypacker/obj/project.nuget.cache @@ -1,10 +1,49 @@ { "version": 2, - "dgSpecHash": "xszAUj8QGuuyIxqTWZGTE3qs/uA4z4NKEKxOVu7TuNRT3IXC0zJxEV9TwNlrRe3sPQCAxAG+5n6ffIvah8bt7A==", + "dgSpecHash": "86tzdSMyBZ4LBgWRo2DCgvyZ/VEc/mczCWvJH8pbCS8w2w5880Cfq2lTezw5+n9JMG/0TxXtwTycvxRgQBa7kQ==", "success": true, - "projectFilePath": "D:\\Projects\\DotNET\\Partypacker\\Partypacker\\Partypacker.csproj", + "projectFilePath": "C:\\Users\\shady\\Desktop\\Partypacker\\Partypacker\\Partypacker.csproj", "expectedPackageFiles": [ - "C:\\Users\\McMistrzYT\\.nuget\\packages\\pastel\\5.0.0\\pastel.5.0.0.nupkg.sha512" + "C:\\Users\\shady\\.nuget\\packages\\bcmakecert\\2.0.9\\bcmakecert.2.0.9.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\dotnetzip\\1.13.8\\dotnetzip.1.13.8.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\fiddlercore.trial\\5.0.2\\fiddlercore.trial.5.0.2.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\microsoft.win32.registry\\4.5.0\\microsoft.win32.registry.4.5.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\pastel\\5.0.0\\pastel.5.0.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.componentmodel.composition\\8.0.0\\system.componentmodel.composition.8.0.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.configuration.configurationmanager\\4.4.1\\system.configuration.configurationmanager.4.4.1.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.0\\system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.4.0\\system.security.cryptography.protecteddata.4.4.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.text.encoding.codepages\\4.5.0\\system.text.encoding.codepages.4.5.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\shady\\.nuget\\packages\\telerik.networkconnections\\0.2.0\\telerik.networkconnections.0.2.0.nupkg.sha512" ], - "logs": [] + "logs": [ + { + "code": "NU1603", + "level": "Warning", + "warningLevel": 1, + "message": "FiddlerCore.Trial 5.0.2 depends on DotNetZip (>= 1.13.4) but DotNetZip 1.13.4 was not found. An approximate best match of DotNetZip 1.13.8 was resolved.", + "libraryId": "DotNetZip", + "targetGraphs": [ + "net7.0" + ] + }, + { + "code": "NU1603", + "level": "Warning", + "warningLevel": 1, + "message": "FiddlerCore.Trial 5.0.2 depends on System.Configuration.ConfigurationManager (>= 4.4.0) but System.Configuration.ConfigurationManager 4.4.0 was not found. An approximate best match of System.Configuration.ConfigurationManager 4.4.1 was resolved.", + "libraryId": "System.Configuration.ConfigurationManager", + "targetGraphs": [ + "net7.0" + ] + } + ] } \ No newline at end of file