diff --git a/Application.cs b/Application.cs index ebb8fe5..cd4aa57 100644 --- a/Application.cs +++ b/Application.cs @@ -261,12 +261,16 @@ private async void StartConversion_Click(object sender, EventArgs e) LogMessage("Starting clip conversion process..."); var processingSpan = transaction.StartChild("process-clips-async"); + var options = new ProcessingClips.ProcessingOptions + { + Mode = ProcessingClips.PatchMode.Null, // You can add UI controls to select this + Placeholder = "REMOVED", + CaseInsensitive = false // Case sensitive by default + }; var result = await clipProcessor.ProcessClipsAsync( selectedClips, blockedResources, - ProcessingClips.PatchMode.Null, // You can add UI controls to select this - "REMOVED", - false // Case sensitive by default + options ); processingSpan.Finish(); diff --git a/ProcessingClips.cs b/ProcessingClips.cs index c312746..032c7c3 100644 --- a/ProcessingClips.cs +++ b/ProcessingClips.cs @@ -249,8 +249,11 @@ public async Task GetResourceFileInfoAsync() /// Process multiple clip files with the specified resource patterns /// public async Task ProcessClipsAsync(List clipFilePaths, List blockedResources, - PatchMode mode = PatchMode.Null, string placeholder = "REMOVED", bool caseInsensitive = false) + ProcessingOptions options = null) { + // Use default options if not provided + options ??= new ProcessingOptions(); + var transaction = SentrySdk.GetSpan() ?? SentrySdk.StartTransaction("process-clips", "process"); var result = new ProcessingResult(); @@ -261,8 +264,8 @@ public async Task ProcessClipsAsync(List clipFilePaths transaction.SetExtra("total_clips", clipFilePaths.Count); transaction.SetExtra("blocked_resources", blockedResources.Count); - transaction.SetExtra("patch_mode", mode.ToString()); - transaction.SetExtra("case_insensitive", caseInsensitive); + transaction.SetExtra("patch_mode", options.Mode.ToString()); + transaction.SetExtra("case_insensitive", options.CaseInsensitive); if (!clipFilePaths.Any()) { @@ -309,7 +312,7 @@ public async Task ProcessClipsAsync(List clipFilePaths { OnProgress?.Invoke($"Processing: {Path.GetFileName(clipPath)}"); - var fileResult = await ProcessSingleClipAsync(clipPath, blockedResources, mode, placeholder, caseInsensitive); + var fileResult = await ProcessSingleClipAsync(clipPath, blockedResources, options); result.ProcessedFiles++; result.TotalPatches += fileResult.PatchCount; @@ -364,7 +367,7 @@ public async Task ProcessClipsAsync(List clipFilePaths /// Process a single clip file /// private async Task ProcessSingleClipAsync(string clipPath, List blockedResources, - PatchMode mode, string placeholder, bool caseInsensitive) + ProcessingOptions options) { var span = SentrySdk.GetSpan()?.StartChild("process-single-clip") ?? SentrySdk.StartTransaction("process-single-clip", "file.process"); @@ -415,11 +418,12 @@ private async Task ProcessSingleClipAsync(string clipPath, var patchSpan = span.StartChild("find-and-patch"); foreach (var resource in blockedResources) { - var matches = FindPatternMatches(fileData, resource, caseInsensitive); + var matches = FindPatternMatches(fileData, resource, options.CaseInsensitive); foreach (var match in matches) { - ApplyPatch(fileData, match.StartIndex, match.Length, mode, placeholder); + var patchOptions = new PatchOptions { Mode = options.Mode, Placeholder = options.Placeholder }; + ApplyPatch(fileData, match.StartIndex, match.Length, patchOptions); result.PatchCount++; hasChanges = true; @@ -628,17 +632,17 @@ private List ExtractAsciiStrings(byte[] data) /// /// Apply patch to binary data /// - private void ApplyPatch(byte[] data, int startIndex, int length, PatchMode mode, string placeholder) + private void ApplyPatch(byte[] data, int startIndex, int length, PatchOptions options) { byte[] replacement; - switch (mode) + switch (options.Mode) { case PatchMode.Null: replacement = new byte[length]; // All zeros break; case PatchMode.Placeholder: - var placeholderBytes = Encoding.ASCII.GetBytes(placeholder); + var placeholderBytes = Encoding.ASCII.GetBytes(options.Placeholder); replacement = new byte[length]; // Repeat placeholder to fill the length @@ -648,7 +652,7 @@ private void ApplyPatch(byte[] data, int startIndex, int length, PatchMode mode, } break; default: - throw new ArgumentException($"Unknown patch mode: {mode}"); + throw new ArgumentException($"Unknown patch mode: {options.Mode}"); } // Apply the replacement @@ -685,6 +689,21 @@ public List GetBackupExecutionFolders() } } + // Processing options parameter object + public class ProcessingOptions + { + public PatchMode Mode { get; set; } = PatchMode.Null; + public string Placeholder { get; set; } = "REMOVED"; + public bool CaseInsensitive { get; set; } = false; + } + + // Patch options parameter object + public class PatchOptions + { + public PatchMode Mode { get; set; } + public string Placeholder { get; set; } + } + // Storage data structure public class ResourceStorageData { diff --git a/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs deleted file mode 100644 index 2217181..0000000 --- a/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/obj/Debug/net8.0-windows/apphost.exe b/obj/Debug/net8.0-windows/apphost.exe deleted file mode 100644 index bc68f54..0000000 Binary files a/obj/Debug/net8.0-windows/apphost.exe and /dev/null differ diff --git a/obj/Debug/net8.0-windows/clip2load.AssemblyInfo.cs b/obj/Debug/net8.0-windows/clip2load.AssemblyInfo.cs deleted file mode 100644 index 53c29d3..0000000 --- a/obj/Debug/net8.0-windows/clip2load.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("clip2load")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("clip2load")] -[assembly: System.Reflection.AssemblyTitleAttribute("clip2load")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/obj/Debug/net8.0-windows/clip2load.AssemblyInfoInputs.cache b/obj/Debug/net8.0-windows/clip2load.AssemblyInfoInputs.cache deleted file mode 100644 index 550c81a..0000000 --- a/obj/Debug/net8.0-windows/clip2load.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -69266fcb246f6a2d651af7544b6b6a6dd31ce7aebb8603a642bc56ebd0c2a6b4 diff --git a/obj/Debug/net8.0-windows/clip2load.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net8.0-windows/clip2load.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index e0debff..0000000 --- a/obj/Debug/net8.0-windows/clip2load.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,22 +0,0 @@ -is_global = true -build_property.ApplicationManifest = -build_property.StartupObject = -build_property.ApplicationDefaultFont = -build_property.ApplicationHighDpiMode = -build_property.ApplicationUseCompatibleTextRendering = -build_property.ApplicationVisualStyles = -build_property.TargetFramework = net8.0-windows -build_property.TargetPlatformMinVersion = 7.0 -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = clip2load -build_property.ProjectDir = C:\Users\Avenzey\Documents\clip2load\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.CsWinRTUseWindowsUIXamlProjections = false -build_property.EffectiveAnalysisLevelStyle = 8.0 -build_property.EnableCodeStyleSeverity = diff --git a/obj/Debug/net8.0-windows/clip2load.GlobalUsings.g.cs b/obj/Debug/net8.0-windows/clip2load.GlobalUsings.g.cs deleted file mode 100644 index 84bbb89..0000000 --- a/obj/Debug/net8.0-windows/clip2load.GlobalUsings.g.cs +++ /dev/null @@ -1,10 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Drawing; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; -global using global::System.Windows.Forms; diff --git a/obj/Debug/net8.0-windows/clip2load.assets.cache b/obj/Debug/net8.0-windows/clip2load.assets.cache deleted file mode 100644 index ab6be05..0000000 Binary files a/obj/Debug/net8.0-windows/clip2load.assets.cache and /dev/null differ diff --git a/obj/Debug/net8.0-windows/clip2load.clip2load.resources b/obj/Debug/net8.0-windows/clip2load.clip2load.resources deleted file mode 100644 index 6c05a97..0000000 Binary files a/obj/Debug/net8.0-windows/clip2load.clip2load.resources and /dev/null differ diff --git a/obj/Debug/net8.0-windows/clip2load.csproj.BuildWithSkipAnalyzers b/obj/Debug/net8.0-windows/clip2load.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net8.0-windows/clip2load.csproj.CoreCompileInputs.cache b/obj/Debug/net8.0-windows/clip2load.csproj.CoreCompileInputs.cache deleted file mode 100644 index f2eb22e..0000000 --- a/obj/Debug/net8.0-windows/clip2load.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -904fea52b313f9dca23ff790fa1039834dd5f9e49974b28991b547131b0626c8 diff --git a/obj/Debug/net8.0-windows/clip2load.csproj.FileListAbsolute.txt b/obj/Debug/net8.0-windows/clip2load.csproj.FileListAbsolute.txt deleted file mode 100644 index afaf496..0000000 --- a/obj/Debug/net8.0-windows/clip2load.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,16 +0,0 @@ -C:\Users\Avenzey\Documents\clip2load\bin\Debug\net8.0-windows\clip2load.exe -C:\Users\Avenzey\Documents\clip2load\bin\Debug\net8.0-windows\clip2load.deps.json -C:\Users\Avenzey\Documents\clip2load\bin\Debug\net8.0-windows\clip2load.runtimeconfig.json -C:\Users\Avenzey\Documents\clip2load\bin\Debug\net8.0-windows\clip2load.dll -C:\Users\Avenzey\Documents\clip2load\bin\Debug\net8.0-windows\clip2load.pdb -C:\Users\Avenzey\Documents\clip2load\obj\Debug\net8.0-windows\clip2load.clip2load.resources -C:\Users\Avenzey\Documents\clip2load\obj\Debug\net8.0-windows\clip2load.csproj.GenerateResource.cache -C:\Users\Avenzey\Documents\clip2load\obj\Debug\net8.0-windows\clip2load.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\Avenzey\Documents\clip2load\obj\Debug\net8.0-windows\clip2load.AssemblyInfoInputs.cache -C:\Users\Avenzey\Documents\clip2load\obj\Debug\net8.0-windows\clip2load.AssemblyInfo.cs -C:\Users\Avenzey\Documents\clip2load\obj\Debug\net8.0-windows\clip2load.csproj.CoreCompileInputs.cache -C:\Users\Avenzey\Documents\clip2load\obj\Debug\net8.0-windows\clip2load.dll -C:\Users\Avenzey\Documents\clip2load\obj\Debug\net8.0-windows\refint\clip2load.dll -C:\Users\Avenzey\Documents\clip2load\obj\Debug\net8.0-windows\clip2load.pdb -C:\Users\Avenzey\Documents\clip2load\obj\Debug\net8.0-windows\clip2load.genruntimeconfig.cache -C:\Users\Avenzey\Documents\clip2load\obj\Debug\net8.0-windows\ref\clip2load.dll diff --git a/obj/Debug/net8.0-windows/clip2load.csproj.GenerateResource.cache b/obj/Debug/net8.0-windows/clip2load.csproj.GenerateResource.cache deleted file mode 100644 index ddab1cd..0000000 Binary files a/obj/Debug/net8.0-windows/clip2load.csproj.GenerateResource.cache and /dev/null differ diff --git a/obj/Debug/net8.0-windows/clip2load.designer.deps.json b/obj/Debug/net8.0-windows/clip2load.designer.deps.json deleted file mode 100644 index 8599efd..0000000 --- a/obj/Debug/net8.0-windows/clip2load.designer.deps.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v8.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v8.0": {} - }, - "libraries": {} -} \ No newline at end of file diff --git a/obj/Debug/net8.0-windows/clip2load.designer.runtimeconfig.json b/obj/Debug/net8.0-windows/clip2load.designer.runtimeconfig.json deleted file mode 100644 index 66c081b..0000000 --- a/obj/Debug/net8.0-windows/clip2load.designer.runtimeconfig.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net8.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "8.0.0" - }, - { - "name": "Microsoft.WindowsDesktop.App", - "version": "8.0.0" - } - ], - "additionalProbingPaths": [ - "C:\\Users\\Avenzey\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Avenzey\\.nuget\\packages", - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configProperties": { - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true, - "CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false, - "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true - } - } -} \ No newline at end of file diff --git a/obj/Debug/net8.0-windows/clip2load.dll b/obj/Debug/net8.0-windows/clip2load.dll deleted file mode 100644 index 1df5cc6..0000000 Binary files a/obj/Debug/net8.0-windows/clip2load.dll and /dev/null differ diff --git a/obj/Debug/net8.0-windows/clip2load.genruntimeconfig.cache b/obj/Debug/net8.0-windows/clip2load.genruntimeconfig.cache deleted file mode 100644 index 88a856f..0000000 --- a/obj/Debug/net8.0-windows/clip2load.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -84cb0d5f9682ace36be867fda98781b8399e00c6a7a395c755585c1c4ee94cf3 diff --git a/obj/Debug/net8.0-windows/clip2load.pdb b/obj/Debug/net8.0-windows/clip2load.pdb deleted file mode 100644 index 32db4cd..0000000 Binary files a/obj/Debug/net8.0-windows/clip2load.pdb and /dev/null differ diff --git a/obj/Debug/net8.0-windows/ref/clip2load.dll b/obj/Debug/net8.0-windows/ref/clip2load.dll deleted file mode 100644 index 9e7d6db..0000000 Binary files a/obj/Debug/net8.0-windows/ref/clip2load.dll and /dev/null differ diff --git a/obj/Debug/net8.0-windows/refint/clip2load.dll b/obj/Debug/net8.0-windows/refint/clip2load.dll deleted file mode 100644 index 9e7d6db..0000000 Binary files a/obj/Debug/net8.0-windows/refint/clip2load.dll and /dev/null differ diff --git a/obj/Release/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/obj/Release/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs deleted file mode 100644 index 2217181..0000000 --- a/obj/Release/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/obj/Release/net8.0-windows/apphost.exe b/obj/Release/net8.0-windows/apphost.exe deleted file mode 100644 index bc68f54..0000000 Binary files a/obj/Release/net8.0-windows/apphost.exe and /dev/null differ diff --git a/obj/Release/net8.0-windows/clip2load.AssemblyInfo.cs b/obj/Release/net8.0-windows/clip2load.AssemblyInfo.cs deleted file mode 100644 index 5d49aed..0000000 --- a/obj/Release/net8.0-windows/clip2load.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("clip2load")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+565f5a03a9c82876b02772c008de40b671f657db")] -[assembly: System.Reflection.AssemblyProductAttribute("clip2load")] -[assembly: System.Reflection.AssemblyTitleAttribute("clip2load")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/obj/Release/net8.0-windows/clip2load.AssemblyInfoInputs.cache b/obj/Release/net8.0-windows/clip2load.AssemblyInfoInputs.cache deleted file mode 100644 index cd509f1..0000000 --- a/obj/Release/net8.0-windows/clip2load.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0352105791f0164eac03956f128dae9da81dadddc87f555f05791bc4b79e7c2b diff --git a/obj/Release/net8.0-windows/clip2load.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net8.0-windows/clip2load.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index ec45a25..0000000 --- a/obj/Release/net8.0-windows/clip2load.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,22 +0,0 @@ -is_global = true -build_property.ApplicationManifest = -build_property.StartupObject = -build_property.ApplicationDefaultFont = -build_property.ApplicationHighDpiMode = -build_property.ApplicationUseCompatibleTextRendering = -build_property.ApplicationVisualStyles = -build_property.TargetFramework = net8.0-windows -build_property.TargetPlatformMinVersion = 7.0 -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = clip2load -build_property.ProjectDir = C:\Users\Avenzey\Documents\Frostcloud\clip2load-repository\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.CsWinRTUseWindowsUIXamlProjections = false -build_property.EffectiveAnalysisLevelStyle = 8.0 -build_property.EnableCodeStyleSeverity = diff --git a/obj/Release/net8.0-windows/clip2load.GlobalUsings.g.cs b/obj/Release/net8.0-windows/clip2load.GlobalUsings.g.cs deleted file mode 100644 index 84bbb89..0000000 --- a/obj/Release/net8.0-windows/clip2load.GlobalUsings.g.cs +++ /dev/null @@ -1,10 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Drawing; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; -global using global::System.Windows.Forms; diff --git a/obj/Release/net8.0-windows/clip2load.assets.cache b/obj/Release/net8.0-windows/clip2load.assets.cache deleted file mode 100644 index deec356..0000000 Binary files a/obj/Release/net8.0-windows/clip2load.assets.cache and /dev/null differ diff --git a/obj/Release/net8.0-windows/clip2load.clip2load.resources b/obj/Release/net8.0-windows/clip2load.clip2load.resources deleted file mode 100644 index 6c05a97..0000000 Binary files a/obj/Release/net8.0-windows/clip2load.clip2load.resources and /dev/null differ diff --git a/obj/Release/net8.0-windows/clip2load.csproj.BuildWithSkipAnalyzers b/obj/Release/net8.0-windows/clip2load.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Release/net8.0-windows/clip2load.csproj.CoreCompileInputs.cache b/obj/Release/net8.0-windows/clip2load.csproj.CoreCompileInputs.cache deleted file mode 100644 index ec213de..0000000 --- a/obj/Release/net8.0-windows/clip2load.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -6f8a8c18c66a9458ea9172daafa103cb22ded9dc1950ecda38f92cc1611d12f6 diff --git a/obj/Release/net8.0-windows/clip2load.csproj.FileListAbsolute.txt b/obj/Release/net8.0-windows/clip2load.csproj.FileListAbsolute.txt deleted file mode 100644 index 7d6acb5..0000000 --- a/obj/Release/net8.0-windows/clip2load.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,16 +0,0 @@ -C:\Users\Avenzey\Documents\clip2load\bin\Release\net8.0-windows\clip2load.exe -C:\Users\Avenzey\Documents\clip2load\bin\Release\net8.0-windows\clip2load.deps.json -C:\Users\Avenzey\Documents\clip2load\bin\Release\net8.0-windows\clip2load.runtimeconfig.json -C:\Users\Avenzey\Documents\clip2load\bin\Release\net8.0-windows\clip2load.dll -C:\Users\Avenzey\Documents\clip2load\bin\Release\net8.0-windows\clip2load.pdb -C:\Users\Avenzey\Documents\clip2load\obj\Release\net8.0-windows\clip2load.clip2load.resources -C:\Users\Avenzey\Documents\clip2load\obj\Release\net8.0-windows\clip2load.csproj.GenerateResource.cache -C:\Users\Avenzey\Documents\clip2load\obj\Release\net8.0-windows\clip2load.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\Avenzey\Documents\clip2load\obj\Release\net8.0-windows\clip2load.AssemblyInfoInputs.cache -C:\Users\Avenzey\Documents\clip2load\obj\Release\net8.0-windows\clip2load.AssemblyInfo.cs -C:\Users\Avenzey\Documents\clip2load\obj\Release\net8.0-windows\clip2load.csproj.CoreCompileInputs.cache -C:\Users\Avenzey\Documents\clip2load\obj\Release\net8.0-windows\clip2load.dll -C:\Users\Avenzey\Documents\clip2load\obj\Release\net8.0-windows\refint\clip2load.dll -C:\Users\Avenzey\Documents\clip2load\obj\Release\net8.0-windows\clip2load.pdb -C:\Users\Avenzey\Documents\clip2load\obj\Release\net8.0-windows\clip2load.genruntimeconfig.cache -C:\Users\Avenzey\Documents\clip2load\obj\Release\net8.0-windows\ref\clip2load.dll diff --git a/obj/Release/net8.0-windows/clip2load.csproj.GenerateResource.cache b/obj/Release/net8.0-windows/clip2load.csproj.GenerateResource.cache deleted file mode 100644 index ddab1cd..0000000 Binary files a/obj/Release/net8.0-windows/clip2load.csproj.GenerateResource.cache and /dev/null differ diff --git a/obj/Release/net8.0-windows/clip2load.designer.deps.json b/obj/Release/net8.0-windows/clip2load.designer.deps.json deleted file mode 100644 index 8599efd..0000000 --- a/obj/Release/net8.0-windows/clip2load.designer.deps.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v8.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v8.0": {} - }, - "libraries": {} -} \ No newline at end of file diff --git a/obj/Release/net8.0-windows/clip2load.designer.runtimeconfig.json b/obj/Release/net8.0-windows/clip2load.designer.runtimeconfig.json deleted file mode 100644 index bfe0728..0000000 --- a/obj/Release/net8.0-windows/clip2load.designer.runtimeconfig.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net8.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "8.0.0" - }, - { - "name": "Microsoft.WindowsDesktop.App", - "version": "8.0.0" - } - ], - "additionalProbingPaths": [ - "C:\\Users\\Avenzey\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Avenzey\\.nuget\\packages", - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true, - "CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false, - "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true - } - } -} \ No newline at end of file diff --git a/obj/Release/net8.0-windows/clip2load.dll b/obj/Release/net8.0-windows/clip2load.dll deleted file mode 100644 index c85a71d..0000000 Binary files a/obj/Release/net8.0-windows/clip2load.dll and /dev/null differ diff --git a/obj/Release/net8.0-windows/clip2load.genruntimeconfig.cache b/obj/Release/net8.0-windows/clip2load.genruntimeconfig.cache deleted file mode 100644 index b66d743..0000000 --- a/obj/Release/net8.0-windows/clip2load.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -62982056ca9f11afda32dee3bf5e8a30467e4c016ef987329ffdac0f49f3fb34 diff --git a/obj/Release/net8.0-windows/clip2load.pdb b/obj/Release/net8.0-windows/clip2load.pdb deleted file mode 100644 index 8b4e0df..0000000 Binary files a/obj/Release/net8.0-windows/clip2load.pdb and /dev/null differ diff --git a/obj/Release/net8.0-windows/ref/clip2load.dll b/obj/Release/net8.0-windows/ref/clip2load.dll deleted file mode 100644 index e3a5edf..0000000 Binary files a/obj/Release/net8.0-windows/ref/clip2load.dll and /dev/null differ diff --git a/obj/Release/net8.0-windows/refint/clip2load.dll b/obj/Release/net8.0-windows/refint/clip2load.dll deleted file mode 100644 index e3a5edf..0000000 Binary files a/obj/Release/net8.0-windows/refint/clip2load.dll and /dev/null differ diff --git a/obj/clip2load.csproj.nuget.dgspec.json b/obj/clip2load.csproj.nuget.dgspec.json deleted file mode 100644 index 0baa7d9..0000000 --- a/obj/clip2load.csproj.nuget.dgspec.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\Avenzey\\Documents\\Frostcloud\\clip2load-repository\\clip2load.csproj": {} - }, - "projects": { - "C:\\Users\\Avenzey\\Documents\\Frostcloud\\clip2load-repository\\clip2load.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\Avenzey\\Documents\\Frostcloud\\clip2load-repository\\clip2load.csproj", - "projectName": "clip2load", - "projectPath": "C:\\Users\\Avenzey\\Documents\\Frostcloud\\clip2load-repository\\clip2load.csproj", - "packagesPath": "C:\\Users\\Avenzey\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Avenzey\\Documents\\Frostcloud\\clip2load-repository\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Avenzey\\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" - ], - "originalTargetFrameworks": [ - "net8.0-windows" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0-windows7.0": { - "targetAlias": "net8.0-windows", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.200" - }, - "frameworks": { - "net8.0-windows7.0": { - "targetAlias": "net8.0-windows", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - }, - "Microsoft.WindowsDesktop.App.WindowsForms": { - "privateAssets": "none" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.203/PortableRuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/obj/clip2load.csproj.nuget.g.props b/obj/clip2load.csproj.nuget.g.props deleted file mode 100644 index 40f46c4..0000000 --- a/obj/clip2load.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Avenzey\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.13.2 - - - - - - \ No newline at end of file diff --git a/obj/clip2load.csproj.nuget.g.targets b/obj/clip2load.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef..0000000 --- a/obj/clip2load.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json deleted file mode 100644 index 9463bda..0000000 --- a/obj/project.assets.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "version": 3, - "targets": { - "net8.0-windows7.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net8.0-windows7.0": [] - }, - "packageFolders": { - "C:\\Users\\Avenzey\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\Avenzey\\Documents\\Frostcloud\\clip2load-repository\\clip2load.csproj", - "projectName": "clip2load", - "projectPath": "C:\\Users\\Avenzey\\Documents\\Frostcloud\\clip2load-repository\\clip2load.csproj", - "packagesPath": "C:\\Users\\Avenzey\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Avenzey\\Documents\\Frostcloud\\clip2load-repository\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Avenzey\\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" - ], - "originalTargetFrameworks": [ - "net8.0-windows" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0-windows7.0": { - "targetAlias": "net8.0-windows", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.200" - }, - "frameworks": { - "net8.0-windows7.0": { - "targetAlias": "net8.0-windows", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - }, - "Microsoft.WindowsDesktop.App.WindowsForms": { - "privateAssets": "none" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.203/PortableRuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache deleted file mode 100644 index af0a462..0000000 --- a/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "fTKwtg8oCbg=", - "success": true, - "projectFilePath": "C:\\Users\\Avenzey\\Documents\\Frostcloud\\clip2load-repository\\clip2load.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file