commit cb5389bdec9f15dddcbfc1a77d890f3d0dc0454e Author: lisoveliy Date: Sat Oct 25 12:26:34 2025 +0300 init: v1.0 rel diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..5be4ff9 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "dotnet.defaultSolution": "ADToGMConverter.sln" +} \ No newline at end of file diff --git a/ADToGMConverter.sln b/ADToGMConverter.sln new file mode 100644 index 0000000..bf775ce --- /dev/null +++ b/ADToGMConverter.sln @@ -0,0 +1,34 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ADToGMConverter", "ADToGMConverter\ADToGMConverter.csproj", "{45EA1DB3-61CB-4E6A-9034-1DBE22042765}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {45EA1DB3-61CB-4E6A-9034-1DBE22042765}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {45EA1DB3-61CB-4E6A-9034-1DBE22042765}.Debug|Any CPU.Build.0 = Debug|Any CPU + {45EA1DB3-61CB-4E6A-9034-1DBE22042765}.Debug|x64.ActiveCfg = Debug|Any CPU + {45EA1DB3-61CB-4E6A-9034-1DBE22042765}.Debug|x64.Build.0 = Debug|Any CPU + {45EA1DB3-61CB-4E6A-9034-1DBE22042765}.Debug|x86.ActiveCfg = Debug|Any CPU + {45EA1DB3-61CB-4E6A-9034-1DBE22042765}.Debug|x86.Build.0 = Debug|Any CPU + {45EA1DB3-61CB-4E6A-9034-1DBE22042765}.Release|Any CPU.ActiveCfg = Release|Any CPU + {45EA1DB3-61CB-4E6A-9034-1DBE22042765}.Release|Any CPU.Build.0 = Release|Any CPU + {45EA1DB3-61CB-4E6A-9034-1DBE22042765}.Release|x64.ActiveCfg = Release|Any CPU + {45EA1DB3-61CB-4E6A-9034-1DBE22042765}.Release|x64.Build.0 = Release|Any CPU + {45EA1DB3-61CB-4E6A-9034-1DBE22042765}.Release|x86.ActiveCfg = Release|Any CPU + {45EA1DB3-61CB-4E6A-9034-1DBE22042765}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/ADToGMConverter/ADToGMConverter.csproj b/ADToGMConverter/ADToGMConverter.csproj new file mode 100644 index 0000000..c39f38b --- /dev/null +++ b/ADToGMConverter/ADToGMConverter.csproj @@ -0,0 +1,16 @@ + + + + Exe + net9.0 + enable + enable + + + + + + + + + diff --git a/ADToGMConverter/Program.cs b/ADToGMConverter/Program.cs new file mode 100644 index 0000000..2d3ffd9 --- /dev/null +++ b/ADToGMConverter/Program.cs @@ -0,0 +1,84 @@ +namespace ADToGMConverter; + +using System.Text; +using ADToGMConverter.Services; +using Melanchall.DryWetMidi.Core; +using Microsoft.Extensions.Logging; + +class Program +{ + static private readonly ILogger logger = LoggerFactory.Create(x => + { + x.AddConsole(); + }).CreateLogger(); + + public static void Main(string[] args) + { + var inputFileName = args[0]; + var outputFileName = args[1]; + var trackName = args.Count() < 3 ? "Addictive Drums 2" : args[2]; + + MidiFile? midiFile; + + try + { + midiFile = MidiFile.Read(inputFileName); + } + catch (Exception e) + { + logger.LogError($"Fatal at reading file: {e.Message}"); + throw; + } + + if (midiFile == null) + { + logger.LogError($"Fatal at reading file: File is null"); + throw new NullReferenceException(); + } + + var trackResolver = new TrackResolver(midiFile.GetTrackChunks().ToList()); + + var names = trackResolver.MapTrackChunksNames(); + + logger.LogInformation($"{names.Values.Count()} tracks found"); + + StringBuilder stringNames = new(); + foreach (var name in names) + { + stringNames.AppendLine($"{name.Key.ChunkId}: {name.Value}"); + } + + logger.LogInformation(stringNames.ToString()); + + if (!names.Values.Contains(trackName)) + { + logger.LogError($"Fatal: Track name {trackName} not found"); + return; + } + logger.LogInformation("Track name found! Converting to General MIDI drums mapping..."); + + var drumTrack = names.First(x => x.Value == trackName).Key; + + // Преобразуем ноты AD2 -> GM + TrackResolver.ConvertAd2ToGmDrums(drumTrack); + + // Сохраняем файл + if (string.IsNullOrEmpty(outputFileName)) + { + outputFileName = Path.Combine( + Path.GetDirectoryName(inputFileName) ?? string.Empty, + Path.GetFileNameWithoutExtension(inputFileName) + "_converted" + Path.GetExtension(inputFileName) + ); + } + + try + { + midiFile.Write(outputFileName, true); + logger.LogInformation($"Successfully converted! File saved as: {outputFileName}"); + } + catch (Exception e) + { + logger.LogError($"Error saving file: {e.Message}"); + } + } +} \ No newline at end of file diff --git a/ADToGMConverter/Services/TrackResolver.cs b/ADToGMConverter/Services/TrackResolver.cs new file mode 100644 index 0000000..033ad83 --- /dev/null +++ b/ADToGMConverter/Services/TrackResolver.cs @@ -0,0 +1,192 @@ +using Melanchall.DryWetMidi.Common; +using Melanchall.DryWetMidi.Core; + +namespace ADToGMConverter.Services; + +public class TrackResolver +{ + private readonly List trackChunks; + public TrackResolver(IEnumerable chunks) + { + trackChunks = chunks.ToList(); + } + + public Dictionary MapTrackChunksNames() + { + return MapTrackChunksNames(trackChunks); + } + + public static Dictionary MapTrackChunksNames(List chunks) + { + var dictionary = new Dictionary(); + + foreach (var chunk in chunks) + { + bool isNamed = false; + foreach (var _event in chunk.Events) + { + if (_event is SequenceTrackNameEvent nameEvent) + { + dictionary.Add(chunk, nameEvent.Text); + isNamed = true; + break; + } + } + if (!isNamed) + { + dictionary.Add(chunk, "NoName"); + } + } + + return dictionary; + } + + // Полный маппинг AD2 -> General MIDI + private static readonly Dictionary Ad2ToGmMapping = new Dictionary + { + // Бас-бочка + { 36, 36 }, // Kick -> Bass Drum 1 + + // Рабочий барабан - основное + { 38, 38 }, // Snare Open Hit -> Acoustic Snare + { 40, 38 }, // Snare Open Hit (db) -> Acoustic Snare + + // Рабочий барабан - римшоты и специальные звуки + { 37, 37 }, // Snare Rimshot -> Side Stick + { 39, 37 }, // Snare Rimshot (db) -> Side Stick + { 42, 37 }, // Snare SideStick -> Side Stick + { 44, 37 }, // Snare RimClick -> Side Stick + + // Рабочий барабан - щетки и дополнительные звуки + { 41, 38 }, // Snare Shallow Rimshot -> Acoustic Snare + { 43, 38 }, // Snare Shallow Hit -> Acoustic Snare + + // Хай-хэт + { 48, 44 }, // HiHat Pedal Closed -> Pedal Hi-Hat + { 49, 42 }, // HiHat Closed 1 Tip -> Closed Hi-Hat + { 50, 42 }, // HiHat Closed 1 Shaft -> Closed Hi-Hat + { 51, 42 }, // HiHat Closed 2 Tip -> Closed Hi-Hat + { 52, 42 }, // HiHat Closed 2 Shaft -> Closed Hi-Hat + { 53, 42 }, // HiHat Closed Bell -> Closed Hi-Hat + { 54, 46 }, // HiHat Open A -> Open Hi-Hat + { 55, 46 }, // HiHat Open B -> Open Hi-Hat + { 56, 46 }, // HiHat Open C -> Open Hi-Hat + { 57, 46 }, // HiHat Open D -> Open Hi-Hat + { 58, 46 }, // HiHat Open Bell -> Open Hi-Hat + { 59, 46 }, // HiHat Pedal Open -> Open Hi-Hat + + // Томы + { 65, 41 }, // Tom 4 Open Hit -> Low Floor Tom + { 66, 41 }, // Tom 4 Rimshot -> Low Floor Tom + { 67, 45 }, // Tom 3 Open Hit -> Low Tom + { 68, 45 }, // Tom 3 Rimshot -> Low Tom + { 69, 47 }, // Tom 2 Open Hit -> Low-Mid Tom + { 70, 47 }, // Tom 2 Rimshot -> Low-Mid Tom + { 71, 48 }, // Tom 1 Open Hit -> Hi-Mid Tom + { 72, 48 }, // Tom 1 Rimshot -> Hi-Mid Tom + + // Основные тарелки + { 77, 49 }, // Cymbal 1 Hit -> Crash Cymbal 1 + { 79, 49 }, // Cymbal 2 Hit -> Crash Cymbal 1 + { 81, 49 }, // Cymbal 3 Hit -> Crash Cymbal 1 + { 89, 57 }, // Cymbal 4 Hit -> Crash Cymbal 2 + { 91, 57 }, // Cymbal 5 Hit -> Crash Cymbal 2 + { 93, 57 }, // Cymbal 6 Hit -> Crash Cymbal 2 + + // Чок тарелок (преобразуем в обычные удары) + { 78, 49 }, // Cymbal 1 Choke -> Crash Cymbal 1 + { 80, 49 }, // Cymbal 2 Choke -> Crash Cymbal 1 + { 82, 49 }, // Cymbal 3 Choke -> Crash Cymbal 1 + { 90, 57 }, // Cymbal 4 Choke -> Crash Cymbal 2 + { 92, 57 }, // Cymbal 5 Choke -> Crash Cymbal 2 + { 94, 57 }, // Cymbal 6 Choke -> Crash Cymbal 2 + + // Райд-тарелки + { 60, 51 }, // Ride 1 Tip -> Ride Cymbal 1 + { 61, 53 }, // Ride 1 Bell -> Ride Bell + { 62, 51 }, // Ride 1 Shaft -> Ride Cymbal 1 + { 63, 51 }, // Ride 1 Choke -> Ride Cymbal 1 + + { 84, 51 }, // Ride 2 Tip -> Ride Cymbal 1 + { 85, 53 }, // Ride 2 Bell -> Ride Bell + { 86, 51 }, // Ride 2 Shaft -> Ride Cymbal 1 + { 87, 51 }, // Ride 2 Choke -> Ride Cymbal 1 + + // Flexi зоны (преобразуем в томы) + { 47, 38 }, // Flexi 1 Hit A -> Acoustic Snare + { 73, 45 }, // Flexi 1 Hit B -> Low Tom + { 74, 47 }, // Flexi 1 Hit C -> Low-Mid Tom + { 76, 48 }, // Flexi 1 Hit D -> Hi-Mid Tom + + { 96, 41 }, // Flexi 2 Hit A -> Low Floor Tom + { 97, 45 }, // Flexi 2 Hit B -> Low Tom + { 98, 47 }, // Flexi 2 Hit C -> Low-Mid Tom + { 99, 48 }, // Flexi 2 Hit D -> Hi-Mid Tom + + { 100, 41 }, // Flexi 3 Hit A -> Low Floor Tom + { 101, 45 }, // Flexi 3 Hit B -> Low Tom + { 102, 47 }, // Flexi 3 Hit C -> Low-Mid Tom + { 103, 48 }, // Flexi 3 Hit D -> Hi-Mid Tom + + // Дополнительные звуки + { 45, 49 }, // Ride 1 Tip (db) -> Crash Cymbal 1 + { 46, 49 }, // Cymbal 1 Hit (db) -> Crash Cymbal 1 + }; + + public static void ConvertAd2ToGmDrums(TrackChunk trackChunk) + { + if (trackChunk == null) return; + + // Получаем все нотные события + var noteEvents = trackChunk.Events + .Where(e => e is NoteOnEvent || e is NoteOffEvent) + .ToList(); + + foreach (var midiEvent in noteEvents) + { + int originalNote; + + if (midiEvent is NoteOnEvent noteOnEvent) + { + originalNote = noteOnEvent.NoteNumber; + if (Ad2ToGmMapping.TryGetValue(originalNote, out int newNote)) + { + noteOnEvent.NoteNumber = (SevenBitNumber)newNote; + } + } + else if (midiEvent is NoteOffEvent noteOffEvent) + { + originalNote = noteOffEvent.NoteNumber; + if (Ad2ToGmMapping.TryGetValue(originalNote, out int newNote)) + { + noteOffEvent.NoteNumber = (SevenBitNumber)newNote; + } + } + } + + // Устанавливаем канал 9 для ударных (General MIDI standard) + SetDrumChannel(trackChunk); + } + + /// + /// Устанавливает канал 9 (ударные) для всех событий трека + /// + private static void SetDrumChannel(TrackChunk trackChunk) + { + foreach (var midiEvent in trackChunk.Events) + { + if (midiEvent is ChannelEvent channelEvent) + { + channelEvent.Channel = (FourBitNumber)9; // Channel 10 in 1-based indexing + } + } + } + + private static string GetNoteName(int noteNumber) + { + string[] noteNames = { "C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B" }; + int octave = noteNumber / 12 - 1; + int noteIndex = noteNumber % 12; + return $"{noteNames[noteIndex]}{octave}"; + } +} \ No newline at end of file diff --git a/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.deps.json b/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.deps.json new file mode 100644 index 0000000..0b8edee --- /dev/null +++ b/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.deps.json @@ -0,0 +1,272 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "ADToGMConverter/1.0.0": { + "dependencies": { + "Melanchall.DryWetMidi": "8.0.2", + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.Extensions.Logging.Console": "9.0.10" + }, + "runtime": { + "ADToGMConverter.dll": {} + } + }, + "Melanchall.DryWetMidi/8.0.2": { + "runtime": { + "lib/netstandard2.0/Melanchall.DryWetMidi.dll": { + "assemblyVersion": "8.0.2.0", + "fileVersion": "8.0.2.0" + } + } + }, + "Microsoft.Extensions.Configuration/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Configuration.Binder": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging.Console/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging.Configuration": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Options/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Configuration.Binder": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.10": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + } + } + }, + "libraries": { + "ADToGMConverter/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Melanchall.DryWetMidi/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aLaOr8wp2TZ69T29AHNmby0Jq507ovL1bPo/bNYw6afW5yLiCtGUk3X9Zl0sUsuE7rd8Ixi2ecOVon0a9L9Ujg==", + "path": "melanchall.drywetmidi/8.0.2", + "hashPath": "melanchall.drywetmidi.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UAm3SLGAMlJdowbN+/xnh2UGJkdJoXVm4MsdhZ60dAMS8jteoyCx5WfIab5DKv0TCYpdhVecLJVUjEO3abs9UQ==", + "path": "microsoft.extensions.configuration/9.0.10", + "hashPath": "microsoft.extensions.configuration.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ad3JxmFj0uxuFa1CT6oxTCC1lQ0xeRuOvzBRFT/I/ofIXVOnNsH/v2GZkAJWhlpZqKUvSexQZzp3EEAB2CdtJg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.10", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D6Kng+9I+w1SQPxJybc6wzw9nnnyUQPutycjtI0svv1RHaWOpUk9PPlwIRfhhoQZ3yihejkEI2wNv/7VnVtkGA==", + "path": "microsoft.extensions.configuration.binder/9.0.10", + "hashPath": "microsoft.extensions.configuration.binder.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iEtXCkNd5XhjNJAOb/wO4IhDRdLIE2CsPxZggZQWJ/q2+sa8dmEPC393nnsiqdH8/4KV8Xn25IzgKPR1UEQ0og==", + "path": "microsoft.extensions.dependencyinjection/9.0.10", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-r9waLiOPe9ZF1PvzUT+RDoHvpMmY8MW+lb4lqjYGObwKpnyPMLI3odVvlmshwuZcdoHynsGWOrCPA0hxZ63lIA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.10", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UBXHqE9vyptVhaFnT1R7YJKCve7TqVI10yjjUZBNGMlW2lZ4c031Slt9hxsOzWCzlpPxxIFyf1Yk4a6Iubxx7w==", + "path": "microsoft.extensions.logging/9.0.10", + "hashPath": "microsoft.extensions.logging.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MFUPv/nN1rAQ19w43smm6bbf0JDYN/1HEPHoiMYY50pvDMFpglzWAuoTavByDmZq7UuhjaxwrET3joU69ZHoHQ==", + "path": "microsoft.extensions.logging.abstractions/9.0.10", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qwTRpxrmLOXZrbgQHRZ9wS2AtVa/61DFIYk8k1rBCCgA5qW0MBxxQC4BjkaI0wSoHHOv/IUXBeFNK+Y59qe/Ug==", + "path": "microsoft.extensions.logging.configuration/9.0.10", + "hashPath": "microsoft.extensions.logging.configuration.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ponA8k4E4S0LlQ8J4ce4Yp1NND8rxww0lbADK9yL3omRpnnawiENb7W/CTgZUIZVJxKcmIwhm1IbUCRk6RLocQ==", + "path": "microsoft.extensions.logging.console/9.0.10", + "hashPath": "microsoft.extensions.logging.console.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zMNABt8eBv0B0XrWjFy9nZNgddavaOeq3ZdaD5IlHhRH65MrU7HM+Hd8GjWE3e2VDGFPZFfSAc6XVXC17f9fOA==", + "path": "microsoft.extensions.options/9.0.10", + "hashPath": "microsoft.extensions.options.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wLsf2TyVFFxWQPv0PRJj365it1ngIt8utlHJWSZ9OJ2k+NDa/PtBIRsGlF/NkoLwm1m+1vOePNl2MiKfk6lYfQ==", + "path": "microsoft.extensions.options.configurationextensions/9.0.10", + "hashPath": "microsoft.extensions.options.configurationextensions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3pl8D1O5ZwMpDkZAT2uXrhQ6NipkwEgDLMFuURiHTf72TvkoMP61QYH3Vk1yrzVHnHBdNZk3cQACz8Zc7YGNhQ==", + "path": "microsoft.extensions.primitives/9.0.10", + "hashPath": "microsoft.extensions.primitives.9.0.10.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.dll b/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.dll new file mode 100644 index 0000000..d61407d Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.exe b/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.exe new file mode 100644 index 0000000..73567a7 Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.exe differ diff --git a/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.pdb b/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.pdb new file mode 100644 index 0000000..b59fbb0 Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.pdb differ diff --git a/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.runtimeconfig.json b/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.runtimeconfig.json new file mode 100644 index 0000000..b19c3c8 --- /dev/null +++ b/ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/ADToGMConverter/bin/Debug/net9.0/Melanchall.DryWetMidi.dll b/ADToGMConverter/bin/Debug/net9.0/Melanchall.DryWetMidi.dll new file mode 100644 index 0000000..6aa2d8f Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Melanchall.DryWetMidi.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Melanchall_DryWetMidi_Native32.dll b/ADToGMConverter/bin/Debug/net9.0/Melanchall_DryWetMidi_Native32.dll new file mode 100644 index 0000000..9081f39 Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Melanchall_DryWetMidi_Native32.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Melanchall_DryWetMidi_Native64.dll b/ADToGMConverter/bin/Debug/net9.0/Melanchall_DryWetMidi_Native64.dll new file mode 100644 index 0000000..271fa68 Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Melanchall_DryWetMidi_Native64.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Melanchall_DryWetMidi_Native64.dylib b/ADToGMConverter/bin/Debug/net9.0/Melanchall_DryWetMidi_Native64.dylib new file mode 100644 index 0000000..41bedb3 Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Melanchall_DryWetMidi_Native64.dylib differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..e2e531d Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..8e792ac Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..738ad85 Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..a73bda2 Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..a4b40dd Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..9e9c0a9 Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 0000000..c2cc94c Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Logging.Console.dll b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 0000000..707a0fc Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Logging.Console.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..ed6be27 Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100644 index 0000000..4e817d8 Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Options.dll b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..30994ba Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Options.dll differ diff --git a/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..c22ff4d Binary files /dev/null and b/ADToGMConverter/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.deps.json b/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.deps.json new file mode 100644 index 0000000..0b8edee --- /dev/null +++ b/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.deps.json @@ -0,0 +1,272 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "ADToGMConverter/1.0.0": { + "dependencies": { + "Melanchall.DryWetMidi": "8.0.2", + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.Extensions.Logging.Console": "9.0.10" + }, + "runtime": { + "ADToGMConverter.dll": {} + } + }, + "Melanchall.DryWetMidi/8.0.2": { + "runtime": { + "lib/netstandard2.0/Melanchall.DryWetMidi.dll": { + "assemblyVersion": "8.0.2.0", + "fileVersion": "8.0.2.0" + } + } + }, + "Microsoft.Extensions.Configuration/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Configuration.Binder": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging.Console/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging.Configuration": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Options/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Configuration.Binder": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.10": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + } + } + }, + "libraries": { + "ADToGMConverter/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Melanchall.DryWetMidi/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aLaOr8wp2TZ69T29AHNmby0Jq507ovL1bPo/bNYw6afW5yLiCtGUk3X9Zl0sUsuE7rd8Ixi2ecOVon0a9L9Ujg==", + "path": "melanchall.drywetmidi/8.0.2", + "hashPath": "melanchall.drywetmidi.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UAm3SLGAMlJdowbN+/xnh2UGJkdJoXVm4MsdhZ60dAMS8jteoyCx5WfIab5DKv0TCYpdhVecLJVUjEO3abs9UQ==", + "path": "microsoft.extensions.configuration/9.0.10", + "hashPath": "microsoft.extensions.configuration.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ad3JxmFj0uxuFa1CT6oxTCC1lQ0xeRuOvzBRFT/I/ofIXVOnNsH/v2GZkAJWhlpZqKUvSexQZzp3EEAB2CdtJg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.10", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D6Kng+9I+w1SQPxJybc6wzw9nnnyUQPutycjtI0svv1RHaWOpUk9PPlwIRfhhoQZ3yihejkEI2wNv/7VnVtkGA==", + "path": "microsoft.extensions.configuration.binder/9.0.10", + "hashPath": "microsoft.extensions.configuration.binder.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iEtXCkNd5XhjNJAOb/wO4IhDRdLIE2CsPxZggZQWJ/q2+sa8dmEPC393nnsiqdH8/4KV8Xn25IzgKPR1UEQ0og==", + "path": "microsoft.extensions.dependencyinjection/9.0.10", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-r9waLiOPe9ZF1PvzUT+RDoHvpMmY8MW+lb4lqjYGObwKpnyPMLI3odVvlmshwuZcdoHynsGWOrCPA0hxZ63lIA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.10", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UBXHqE9vyptVhaFnT1R7YJKCve7TqVI10yjjUZBNGMlW2lZ4c031Slt9hxsOzWCzlpPxxIFyf1Yk4a6Iubxx7w==", + "path": "microsoft.extensions.logging/9.0.10", + "hashPath": "microsoft.extensions.logging.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MFUPv/nN1rAQ19w43smm6bbf0JDYN/1HEPHoiMYY50pvDMFpglzWAuoTavByDmZq7UuhjaxwrET3joU69ZHoHQ==", + "path": "microsoft.extensions.logging.abstractions/9.0.10", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qwTRpxrmLOXZrbgQHRZ9wS2AtVa/61DFIYk8k1rBCCgA5qW0MBxxQC4BjkaI0wSoHHOv/IUXBeFNK+Y59qe/Ug==", + "path": "microsoft.extensions.logging.configuration/9.0.10", + "hashPath": "microsoft.extensions.logging.configuration.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ponA8k4E4S0LlQ8J4ce4Yp1NND8rxww0lbADK9yL3omRpnnawiENb7W/CTgZUIZVJxKcmIwhm1IbUCRk6RLocQ==", + "path": "microsoft.extensions.logging.console/9.0.10", + "hashPath": "microsoft.extensions.logging.console.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zMNABt8eBv0B0XrWjFy9nZNgddavaOeq3ZdaD5IlHhRH65MrU7HM+Hd8GjWE3e2VDGFPZFfSAc6XVXC17f9fOA==", + "path": "microsoft.extensions.options/9.0.10", + "hashPath": "microsoft.extensions.options.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wLsf2TyVFFxWQPv0PRJj365it1ngIt8utlHJWSZ9OJ2k+NDa/PtBIRsGlF/NkoLwm1m+1vOePNl2MiKfk6lYfQ==", + "path": "microsoft.extensions.options.configurationextensions/9.0.10", + "hashPath": "microsoft.extensions.options.configurationextensions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3pl8D1O5ZwMpDkZAT2uXrhQ6NipkwEgDLMFuURiHTf72TvkoMP61QYH3Vk1yrzVHnHBdNZk3cQACz8Zc7YGNhQ==", + "path": "microsoft.extensions.primitives/9.0.10", + "hashPath": "microsoft.extensions.primitives.9.0.10.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.dll b/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.dll new file mode 100644 index 0000000..245138b Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.exe b/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.exe new file mode 100644 index 0000000..73567a7 Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.exe differ diff --git a/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.pdb b/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.pdb new file mode 100644 index 0000000..232c2cc Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.pdb differ diff --git a/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.runtimeconfig.json b/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.runtimeconfig.json new file mode 100644 index 0000000..233cae7 --- /dev/null +++ b/ADToGMConverter/bin/Release/net9.0/ADToGMConverter.runtimeconfig.json @@ -0,0 +1,13 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/ADToGMConverter/bin/Release/net9.0/Melanchall.DryWetMidi.dll b/ADToGMConverter/bin/Release/net9.0/Melanchall.DryWetMidi.dll new file mode 100644 index 0000000..6aa2d8f Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Melanchall.DryWetMidi.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Melanchall_DryWetMidi_Native32.dll b/ADToGMConverter/bin/Release/net9.0/Melanchall_DryWetMidi_Native32.dll new file mode 100644 index 0000000..9081f39 Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Melanchall_DryWetMidi_Native32.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Melanchall_DryWetMidi_Native64.dll b/ADToGMConverter/bin/Release/net9.0/Melanchall_DryWetMidi_Native64.dll new file mode 100644 index 0000000..271fa68 Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Melanchall_DryWetMidi_Native64.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Melanchall_DryWetMidi_Native64.dylib b/ADToGMConverter/bin/Release/net9.0/Melanchall_DryWetMidi_Native64.dylib new file mode 100644 index 0000000..41bedb3 Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Melanchall_DryWetMidi_Native64.dylib differ diff --git a/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..e2e531d Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Configuration.Binder.dll b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..8e792ac Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Configuration.dll b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..738ad85 Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Configuration.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..a73bda2 Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.DependencyInjection.dll b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..a4b40dd Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Logging.Abstractions.dll b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..9e9c0a9 Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Logging.Configuration.dll b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 0000000..c2cc94c Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Logging.Console.dll b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 0000000..707a0fc Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Logging.Console.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Logging.dll b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..ed6be27 Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Logging.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100644 index 0000000..4e817d8 Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Options.dll b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..30994ba Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Options.dll differ diff --git a/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Primitives.dll b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..c22ff4d Binary files /dev/null and b/ADToGMConverter/bin/Release/net9.0/Microsoft.Extensions.Primitives.dll differ diff --git a/ADToGMConverter/obj/ADToGMConverter.csproj.nuget.dgspec.json b/ADToGMConverter/obj/ADToGMConverter.csproj.nuget.dgspec.json new file mode 100644 index 0000000..a79f130 --- /dev/null +++ b/ADToGMConverter/obj/ADToGMConverter.csproj.nuget.dgspec.json @@ -0,0 +1,81 @@ +{ + "format": 1, + "restore": { + "D:\\Sava\\ADToGMConverter\\ADToGMConverter\\ADToGMConverter.csproj": {} + }, + "projects": { + "D:\\Sava\\ADToGMConverter\\ADToGMConverter\\ADToGMConverter.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Sava\\ADToGMConverter\\ADToGMConverter\\ADToGMConverter.csproj", + "projectName": "ADToGMConverter", + "projectPath": "D:\\Sava\\ADToGMConverter\\ADToGMConverter\\ADToGMConverter.csproj", + "packagesPath": "C:\\Users\\zalverh\\.nuget\\packages\\", + "outputPath": "D:\\Sava\\ADToGMConverter\\ADToGMConverter\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\zalverh\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Melanchall.DryWetMidi": { + "target": "Package", + "version": "[8.0.2, )" + }, + "Microsoft.Extensions.Logging": { + "target": "Package", + "version": "[9.0.10, )" + }, + "Microsoft.Extensions.Logging.Console": { + "target": "Package", + "version": "[9.0.10, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ADToGMConverter/obj/ADToGMConverter.csproj.nuget.g.props b/ADToGMConverter/obj/ADToGMConverter.csproj.nuget.g.props new file mode 100644 index 0000000..1d8a42c --- /dev/null +++ b/ADToGMConverter/obj/ADToGMConverter.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\zalverh\.nuget\packages\ + PackageReference + 6.14.0 + + + + + \ No newline at end of file diff --git a/ADToGMConverter/obj/ADToGMConverter.csproj.nuget.g.targets b/ADToGMConverter/obj/ADToGMConverter.csproj.nuget.g.targets new file mode 100644 index 0000000..62f0408 --- /dev/null +++ b/ADToGMConverter/obj/ADToGMConverter.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/ADToGMConverter/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/ADToGMConverter/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/ADToGMConverter/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/ADToGMConverter/obj/Debug/net9.0/ADToGMCo.2CBC695E.Up2Date b/ADToGMConverter/obj/Debug/net9.0/ADToGMCo.2CBC695E.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.AssemblyInfo.cs b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.AssemblyInfo.cs new file mode 100644 index 0000000..1821c9c --- /dev/null +++ b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// 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("ADToGMConverter")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ADToGMConverter")] +[assembly: System.Reflection.AssemblyTitleAttribute("ADToGMConverter")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.AssemblyInfoInputs.cache b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8ba03dd --- /dev/null +++ b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +c36b580638ef8baef275a3f78092e7756cc19492f11674050782fc6a83cd637d diff --git a/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.GeneratedMSBuildEditorConfig.editorconfig b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9026728 --- /dev/null +++ b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,15 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ADToGMConverter +build_property.ProjectDir = D:\Sava\ADToGMConverter\ADToGMConverter\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.GlobalUsings.g.cs b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +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; diff --git a/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.assets.cache b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.assets.cache new file mode 100644 index 0000000..2c00359 Binary files /dev/null and b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.assets.cache differ diff --git a/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.csproj.AssemblyReference.cache b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.csproj.AssemblyReference.cache new file mode 100644 index 0000000..cbd4735 Binary files /dev/null and b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.csproj.AssemblyReference.cache differ diff --git a/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.csproj.CoreCompileInputs.cache b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..3645b51 --- /dev/null +++ b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e645300a4a1d4c77c268593a32145363e7911e57cac8fb9cda10551a8d41abab diff --git a/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.csproj.FileListAbsolute.txt b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f22c303 --- /dev/null +++ b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.csproj.FileListAbsolute.txt @@ -0,0 +1,32 @@ +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Melanchall_DryWetMidi_Native32.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Melanchall_DryWetMidi_Native64.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Melanchall_DryWetMidi_Native64.dylib +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\ADToGMConverter.exe +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\ADToGMConverter.deps.json +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\ADToGMConverter.runtimeconfig.json +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\ADToGMConverter.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\ADToGMConverter.pdb +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Melanchall.DryWetMidi.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Microsoft.Extensions.Configuration.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Binder.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Microsoft.Extensions.Logging.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Microsoft.Extensions.Logging.Abstractions.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Microsoft.Extensions.Logging.Configuration.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Microsoft.Extensions.Logging.Console.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Microsoft.Extensions.Options.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Debug\net9.0\Microsoft.Extensions.Primitives.dll +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Debug\net9.0\ADToGMConverter.csproj.AssemblyReference.cache +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Debug\net9.0\ADToGMConverter.GeneratedMSBuildEditorConfig.editorconfig +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Debug\net9.0\ADToGMConverter.AssemblyInfoInputs.cache +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Debug\net9.0\ADToGMConverter.AssemblyInfo.cs +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Debug\net9.0\ADToGMConverter.csproj.CoreCompileInputs.cache +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Debug\net9.0\ADToGMCo.2CBC695E.Up2Date +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Debug\net9.0\ADToGMConverter.dll +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Debug\net9.0\refint\ADToGMConverter.dll +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Debug\net9.0\ADToGMConverter.pdb +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Debug\net9.0\ADToGMConverter.genruntimeconfig.cache +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Debug\net9.0\ref\ADToGMConverter.dll diff --git a/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.dll b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.dll new file mode 100644 index 0000000..d61407d Binary files /dev/null and b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.dll differ diff --git a/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.genruntimeconfig.cache b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.genruntimeconfig.cache new file mode 100644 index 0000000..6f812ec --- /dev/null +++ b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.genruntimeconfig.cache @@ -0,0 +1 @@ +aac02a3f88996c1bfc32c8e18fe9e3f302603628c492fdac6cb40562d25b74a9 diff --git a/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.pdb b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.pdb new file mode 100644 index 0000000..b59fbb0 Binary files /dev/null and b/ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.pdb differ diff --git a/ADToGMConverter/obj/Debug/net9.0/apphost.exe b/ADToGMConverter/obj/Debug/net9.0/apphost.exe new file mode 100644 index 0000000..73567a7 Binary files /dev/null and b/ADToGMConverter/obj/Debug/net9.0/apphost.exe differ diff --git a/ADToGMConverter/obj/Debug/net9.0/ref/ADToGMConverter.dll b/ADToGMConverter/obj/Debug/net9.0/ref/ADToGMConverter.dll new file mode 100644 index 0000000..dbe367b Binary files /dev/null and b/ADToGMConverter/obj/Debug/net9.0/ref/ADToGMConverter.dll differ diff --git a/ADToGMConverter/obj/Debug/net9.0/refint/ADToGMConverter.dll b/ADToGMConverter/obj/Debug/net9.0/refint/ADToGMConverter.dll new file mode 100644 index 0000000..dbe367b Binary files /dev/null and b/ADToGMConverter/obj/Debug/net9.0/refint/ADToGMConverter.dll differ diff --git a/ADToGMConverter/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/ADToGMConverter/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/ADToGMConverter/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/ADToGMConverter/obj/Release/net9.0/ADToGMCo.2CBC695E.Up2Date b/ADToGMConverter/obj/Release/net9.0/ADToGMCo.2CBC695E.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.AssemblyInfo.cs b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.AssemblyInfo.cs new file mode 100644 index 0000000..dd560c0 --- /dev/null +++ b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// 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("ADToGMConverter")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ADToGMConverter")] +[assembly: System.Reflection.AssemblyTitleAttribute("ADToGMConverter")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Создано классом WriteCodeFragment MSBuild. + diff --git a/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.AssemblyInfoInputs.cache b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d96cff4 --- /dev/null +++ b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +80cd9b98a1fe1bb050fc32dfc5efd052461ef13de62dd5f33632b85328838609 diff --git a/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.GeneratedMSBuildEditorConfig.editorconfig b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9026728 --- /dev/null +++ b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,15 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ADToGMConverter +build_property.ProjectDir = D:\Sava\ADToGMConverter\ADToGMConverter\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.GlobalUsings.g.cs b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +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; diff --git a/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.assets.cache b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.assets.cache new file mode 100644 index 0000000..ffba81f Binary files /dev/null and b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.assets.cache differ diff --git a/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.csproj.AssemblyReference.cache b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.csproj.AssemblyReference.cache new file mode 100644 index 0000000..cbd4735 Binary files /dev/null and b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.csproj.AssemblyReference.cache differ diff --git a/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.csproj.CoreCompileInputs.cache b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..562af3f --- /dev/null +++ b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7425643c207df6394324e188023071fa9dd91929600bde6f06aaa04e44618c65 diff --git a/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.csproj.FileListAbsolute.txt b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d46c007 --- /dev/null +++ b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.csproj.FileListAbsolute.txt @@ -0,0 +1,32 @@ +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Melanchall_DryWetMidi_Native32.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Melanchall_DryWetMidi_Native64.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Melanchall_DryWetMidi_Native64.dylib +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\ADToGMConverter.exe +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\ADToGMConverter.deps.json +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\ADToGMConverter.runtimeconfig.json +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\ADToGMConverter.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\ADToGMConverter.pdb +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Melanchall.DryWetMidi.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Microsoft.Extensions.Configuration.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Microsoft.Extensions.Configuration.Binder.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Microsoft.Extensions.DependencyInjection.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Microsoft.Extensions.Logging.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Microsoft.Extensions.Logging.Abstractions.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Microsoft.Extensions.Logging.Configuration.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Microsoft.Extensions.Logging.Console.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Microsoft.Extensions.Options.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\Sava\ADToGMConverter\ADToGMConverter\bin\Release\net9.0\Microsoft.Extensions.Primitives.dll +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Release\net9.0\ADToGMConverter.csproj.AssemblyReference.cache +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Release\net9.0\ADToGMConverter.GeneratedMSBuildEditorConfig.editorconfig +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Release\net9.0\ADToGMConverter.AssemblyInfoInputs.cache +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Release\net9.0\ADToGMConverter.AssemblyInfo.cs +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Release\net9.0\ADToGMConverter.csproj.CoreCompileInputs.cache +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Release\net9.0\ADToGMCo.2CBC695E.Up2Date +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Release\net9.0\ADToGMConverter.dll +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Release\net9.0\refint\ADToGMConverter.dll +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Release\net9.0\ADToGMConverter.pdb +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Release\net9.0\ADToGMConverter.genruntimeconfig.cache +D:\Sava\ADToGMConverter\ADToGMConverter\obj\Release\net9.0\ref\ADToGMConverter.dll diff --git a/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.dll b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.dll new file mode 100644 index 0000000..245138b Binary files /dev/null and b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.dll differ diff --git a/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.genruntimeconfig.cache b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.genruntimeconfig.cache new file mode 100644 index 0000000..6eb1b39 --- /dev/null +++ b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.genruntimeconfig.cache @@ -0,0 +1 @@ +f1f35b67925d85b6260997897637a859d007dbaac54a863d87f78807d58b1624 diff --git a/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.pdb b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.pdb new file mode 100644 index 0000000..232c2cc Binary files /dev/null and b/ADToGMConverter/obj/Release/net9.0/ADToGMConverter.pdb differ diff --git a/ADToGMConverter/obj/Release/net9.0/apphost.exe b/ADToGMConverter/obj/Release/net9.0/apphost.exe new file mode 100644 index 0000000..73567a7 Binary files /dev/null and b/ADToGMConverter/obj/Release/net9.0/apphost.exe differ diff --git a/ADToGMConverter/obj/Release/net9.0/ref/ADToGMConverter.dll b/ADToGMConverter/obj/Release/net9.0/ref/ADToGMConverter.dll new file mode 100644 index 0000000..e18b63e Binary files /dev/null and b/ADToGMConverter/obj/Release/net9.0/ref/ADToGMConverter.dll differ diff --git a/ADToGMConverter/obj/Release/net9.0/refint/ADToGMConverter.dll b/ADToGMConverter/obj/Release/net9.0/refint/ADToGMConverter.dll new file mode 100644 index 0000000..e18b63e Binary files /dev/null and b/ADToGMConverter/obj/Release/net9.0/refint/ADToGMConverter.dll differ diff --git a/ADToGMConverter/obj/project.assets.json b/ADToGMConverter/obj/project.assets.json new file mode 100644 index 0000000..edbca63 --- /dev/null +++ b/ADToGMConverter/obj/project.assets.json @@ -0,0 +1,782 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "Melanchall.DryWetMidi/8.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Melanchall.DryWetMidi.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Melanchall.DryWetMidi.dll": { + "related": ".xml" + } + }, + "build": { + "build/Melanchall.DryWetMidi.targets": {} + } + }, + "Microsoft.Extensions.Configuration/9.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/9.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Configuration.Binder": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.10" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Console/9.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging.Configuration": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Options/9.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Configuration.Binder": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.10": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + } + } + }, + "libraries": { + "Melanchall.DryWetMidi/8.0.2": { + "sha512": "aLaOr8wp2TZ69T29AHNmby0Jq507ovL1bPo/bNYw6afW5yLiCtGUk3X9Zl0sUsuE7rd8Ixi2ecOVon0a9L9Ujg==", + "type": "package", + "path": "melanchall.drywetmidi/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "build/Melanchall.DryWetMidi.targets", + "build/Melanchall_DryWetMidi_Native32.dll", + "build/Melanchall_DryWetMidi_Native64.dll", + "build/Melanchall_DryWetMidi_Native64.dylib", + "icon.png", + "lib/net45/Melanchall.DryWetMidi.dll", + "lib/net45/Melanchall.DryWetMidi.xml", + "lib/netstandard2.0/Melanchall.DryWetMidi.dll", + "lib/netstandard2.0/Melanchall.DryWetMidi.xml", + "melanchall.drywetmidi.8.0.2.nupkg.sha512", + "melanchall.drywetmidi.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/9.0.10": { + "sha512": "UAm3SLGAMlJdowbN+/xnh2UGJkdJoXVm4MsdhZ60dAMS8jteoyCx5WfIab5DKv0TCYpdhVecLJVUjEO3abs9UQ==", + "type": "package", + "path": "microsoft.extensions.configuration/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.9.0.10.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.10": { + "sha512": "ad3JxmFj0uxuFa1CT6oxTCC1lQ0xeRuOvzBRFT/I/ofIXVOnNsH/v2GZkAJWhlpZqKUvSexQZzp3EEAB2CdtJg==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.9.0.10.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/9.0.10": { + "sha512": "D6Kng+9I+w1SQPxJybc6wzw9nnnyUQPutycjtI0svv1RHaWOpUk9PPlwIRfhhoQZ3yihejkEI2wNv/7VnVtkGA==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.9.0.10.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.10": { + "sha512": "iEtXCkNd5XhjNJAOb/wO4IhDRdLIE2CsPxZggZQWJ/q2+sa8dmEPC393nnsiqdH8/4KV8Xn25IzgKPR1UEQ0og==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.9.0.10.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { + "sha512": "r9waLiOPe9ZF1PvzUT+RDoHvpMmY8MW+lb4lqjYGObwKpnyPMLI3odVvlmshwuZcdoHynsGWOrCPA0hxZ63lIA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.9.0.10.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/9.0.10": { + "sha512": "UBXHqE9vyptVhaFnT1R7YJKCve7TqVI10yjjUZBNGMlW2lZ4c031Slt9hxsOzWCzlpPxxIFyf1Yk4a6Iubxx7w==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.9.0.10.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.10": { + "sha512": "MFUPv/nN1rAQ19w43smm6bbf0JDYN/1HEPHoiMYY50pvDMFpglzWAuoTavByDmZq7UuhjaxwrET3joU69ZHoHQ==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.9.0.10.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Configuration/9.0.10": { + "sha512": "qwTRpxrmLOXZrbgQHRZ9wS2AtVa/61DFIYk8k1rBCCgA5qW0MBxxQC4BjkaI0wSoHHOv/IUXBeFNK+Y59qe/Ug==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets", + "lib/net462/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net462/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.9.0.10.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Console/9.0.10": { + "sha512": "ponA8k4E4S0LlQ8J4ce4Yp1NND8rxww0lbADK9yL3omRpnnawiENb7W/CTgZUIZVJxKcmIwhm1IbUCRk6RLocQ==", + "type": "package", + "path": "microsoft.extensions.logging.console/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", + "lib/net462/Microsoft.Extensions.Logging.Console.dll", + "lib/net462/Microsoft.Extensions.Logging.Console.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Console.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Console.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", + "microsoft.extensions.logging.console.9.0.10.nupkg.sha512", + "microsoft.extensions.logging.console.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.10": { + "sha512": "zMNABt8eBv0B0XrWjFy9nZNgddavaOeq3ZdaD5IlHhRH65MrU7HM+Hd8GjWE3e2VDGFPZFfSAc6XVXC17f9fOA==", + "type": "package", + "path": "microsoft.extensions.options/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.9.0.10.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.10": { + "sha512": "wLsf2TyVFFxWQPv0PRJj365it1ngIt8utlHJWSZ9OJ2k+NDa/PtBIRsGlF/NkoLwm1m+1vOePNl2MiKfk6lYfQ==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.9.0.10.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.10": { + "sha512": "3pl8D1O5ZwMpDkZAT2uXrhQ6NipkwEgDLMFuURiHTf72TvkoMP61QYH3Vk1yrzVHnHBdNZk3cQACz8Zc7YGNhQ==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.9.0.10.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "Melanchall.DryWetMidi >= 8.0.2", + "Microsoft.Extensions.Logging >= 9.0.10", + "Microsoft.Extensions.Logging.Console >= 9.0.10" + ] + }, + "packageFolders": { + "C:\\Users\\zalverh\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Sava\\ADToGMConverter\\ADToGMConverter\\ADToGMConverter.csproj", + "projectName": "ADToGMConverter", + "projectPath": "D:\\Sava\\ADToGMConverter\\ADToGMConverter\\ADToGMConverter.csproj", + "packagesPath": "C:\\Users\\zalverh\\.nuget\\packages\\", + "outputPath": "D:\\Sava\\ADToGMConverter\\ADToGMConverter\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\zalverh\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Melanchall.DryWetMidi": { + "target": "Package", + "version": "[8.0.2, )" + }, + "Microsoft.Extensions.Logging": { + "target": "Package", + "version": "[9.0.10, )" + }, + "Microsoft.Extensions.Logging.Console": { + "target": "Package", + "version": "[9.0.10, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/ADToGMConverter/obj/project.nuget.cache b/ADToGMConverter/obj/project.nuget.cache new file mode 100644 index 0000000..63b7ef7 --- /dev/null +++ b/ADToGMConverter/obj/project.nuget.cache @@ -0,0 +1,22 @@ +{ + "version": 2, + "dgSpecHash": "mB5uQshR8PE=", + "success": true, + "projectFilePath": "D:\\Sava\\ADToGMConverter\\ADToGMConverter\\ADToGMConverter.csproj", + "expectedPackageFiles": [ + "C:\\Users\\zalverh\\.nuget\\packages\\melanchall.drywetmidi\\8.0.2\\melanchall.drywetmidi.8.0.2.nupkg.sha512", + "C:\\Users\\zalverh\\.nuget\\packages\\microsoft.extensions.configuration\\9.0.10\\microsoft.extensions.configuration.9.0.10.nupkg.sha512", + "C:\\Users\\zalverh\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.10\\microsoft.extensions.configuration.abstractions.9.0.10.nupkg.sha512", + "C:\\Users\\zalverh\\.nuget\\packages\\microsoft.extensions.configuration.binder\\9.0.10\\microsoft.extensions.configuration.binder.9.0.10.nupkg.sha512", + "C:\\Users\\zalverh\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.10\\microsoft.extensions.dependencyinjection.9.0.10.nupkg.sha512", + "C:\\Users\\zalverh\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.10\\microsoft.extensions.dependencyinjection.abstractions.9.0.10.nupkg.sha512", + "C:\\Users\\zalverh\\.nuget\\packages\\microsoft.extensions.logging\\9.0.10\\microsoft.extensions.logging.9.0.10.nupkg.sha512", + "C:\\Users\\zalverh\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.10\\microsoft.extensions.logging.abstractions.9.0.10.nupkg.sha512", + "C:\\Users\\zalverh\\.nuget\\packages\\microsoft.extensions.logging.configuration\\9.0.10\\microsoft.extensions.logging.configuration.9.0.10.nupkg.sha512", + "C:\\Users\\zalverh\\.nuget\\packages\\microsoft.extensions.logging.console\\9.0.10\\microsoft.extensions.logging.console.9.0.10.nupkg.sha512", + "C:\\Users\\zalverh\\.nuget\\packages\\microsoft.extensions.options\\9.0.10\\microsoft.extensions.options.9.0.10.nupkg.sha512", + "C:\\Users\\zalverh\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\9.0.10\\microsoft.extensions.options.configurationextensions.9.0.10.nupkg.sha512", + "C:\\Users\\zalverh\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.10\\microsoft.extensions.primitives.9.0.10.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..64fb613 --- /dev/null +++ b/Readme.md @@ -0,0 +1,3 @@ +# ADToGMConverter + +Addictive Drums 2 To General MIDI (Guitar Pro) Track Converter for midi files \ No newline at end of file