init: v1.0 rel
This commit is contained in:
commit
cb5389bdec
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"dotnet.defaultSolution": "ADToGMConverter.sln"
|
||||||
|
}
|
||||||
34
ADToGMConverter.sln
Normal file
34
ADToGMConverter.sln
Normal file
@ -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
|
||||||
16
ADToGMConverter/ADToGMConverter.csproj
Normal file
16
ADToGMConverter/ADToGMConverter.csproj
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Melanchall.DryWetMidi" Version="8.0.2" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.10" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.10" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
84
ADToGMConverter/Program.cs
Normal file
84
ADToGMConverter/Program.cs
Normal file
@ -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<Program> logger = LoggerFactory.Create(x =>
|
||||||
|
{
|
||||||
|
x.AddConsole();
|
||||||
|
}).CreateLogger<Program>();
|
||||||
|
|
||||||
|
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}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
192
ADToGMConverter/Services/TrackResolver.cs
Normal file
192
ADToGMConverter/Services/TrackResolver.cs
Normal file
@ -0,0 +1,192 @@
|
|||||||
|
using Melanchall.DryWetMidi.Common;
|
||||||
|
using Melanchall.DryWetMidi.Core;
|
||||||
|
|
||||||
|
namespace ADToGMConverter.Services;
|
||||||
|
|
||||||
|
public class TrackResolver
|
||||||
|
{
|
||||||
|
private readonly List<TrackChunk> trackChunks;
|
||||||
|
public TrackResolver(IEnumerable<TrackChunk> chunks)
|
||||||
|
{
|
||||||
|
trackChunks = chunks.ToList();
|
||||||
|
}
|
||||||
|
|
||||||
|
public Dictionary<TrackChunk, string> MapTrackChunksNames()
|
||||||
|
{
|
||||||
|
return MapTrackChunksNames(trackChunks);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Dictionary<TrackChunk, string> MapTrackChunksNames(List<TrackChunk> chunks)
|
||||||
|
{
|
||||||
|
var dictionary = new Dictionary<TrackChunk, string>();
|
||||||
|
|
||||||
|
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<int, int> Ad2ToGmMapping = new Dictionary<int, int>
|
||||||
|
{
|
||||||
|
// Бас-бочка
|
||||||
|
{ 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);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Устанавливает канал 9 (ударные) для всех событий трека
|
||||||
|
/// </summary>
|
||||||
|
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}";
|
||||||
|
}
|
||||||
|
}
|
||||||
272
ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.deps.json
Normal file
272
ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.deps.json
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.dll
Normal file
BIN
ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.dll
Normal file
Binary file not shown.
BIN
ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.exe
Normal file
BIN
ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.exe
Normal file
Binary file not shown.
BIN
ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.pdb
Normal file
BIN
ADToGMConverter/bin/Debug/net9.0/ADToGMConverter.pdb
Normal file
Binary file not shown.
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net9.0",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "9.0.0"
|
||||||
|
},
|
||||||
|
"configProperties": {
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
ADToGMConverter/bin/Debug/net9.0/Melanchall.DryWetMidi.dll
Normal file
BIN
ADToGMConverter/bin/Debug/net9.0/Melanchall.DryWetMidi.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
272
ADToGMConverter/bin/Release/net9.0/ADToGMConverter.deps.json
Normal file
272
ADToGMConverter/bin/Release/net9.0/ADToGMConverter.deps.json
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
ADToGMConverter/bin/Release/net9.0/ADToGMConverter.dll
Normal file
BIN
ADToGMConverter/bin/Release/net9.0/ADToGMConverter.dll
Normal file
Binary file not shown.
BIN
ADToGMConverter/bin/Release/net9.0/ADToGMConverter.exe
Normal file
BIN
ADToGMConverter/bin/Release/net9.0/ADToGMConverter.exe
Normal file
Binary file not shown.
BIN
ADToGMConverter/bin/Release/net9.0/ADToGMConverter.pdb
Normal file
BIN
ADToGMConverter/bin/Release/net9.0/ADToGMConverter.pdb
Normal file
Binary file not shown.
@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
ADToGMConverter/bin/Release/net9.0/Melanchall.DryWetMidi.dll
Normal file
BIN
ADToGMConverter/bin/Release/net9.0/Melanchall.DryWetMidi.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
81
ADToGMConverter/obj/ADToGMConverter.csproj.nuget.dgspec.json
Normal file
81
ADToGMConverter/obj/ADToGMConverter.csproj.nuget.dgspec.json
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
15
ADToGMConverter/obj/ADToGMConverter.csproj.nuget.g.props
Normal file
15
ADToGMConverter/obj/ADToGMConverter.csproj.nuget.g.props
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\zalverh\.nuget\packages\</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\zalverh\.nuget\packages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options\9.0.10\buildTransitive\net8.0\Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options\9.0.10\buildTransitive\net8.0\Microsoft.Extensions.Options.targets')" />
|
||||||
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder\9.0.10\buildTransitive\netstandard2.0\Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder\9.0.10\buildTransitive\netstandard2.0\Microsoft.Extensions.Configuration.Binder.targets')" />
|
||||||
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\9.0.10\buildTransitive\net8.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\9.0.10\buildTransitive\net8.0\Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||||
|
<Import Project="$(NuGetPackageRoot)melanchall.drywetmidi\8.0.2\build\Melanchall.DryWetMidi.targets" Condition="Exists('$(NuGetPackageRoot)melanchall.drywetmidi\8.0.2\build\Melanchall.DryWetMidi.targets')" />
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
c36b580638ef8baef275a3f78092e7756cc19492f11674050782fc6a83cd637d
|
||||||
@ -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 =
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
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;
|
||||||
BIN
ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.assets.cache
Normal file
BIN
ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
e645300a4a1d4c77c268593a32145363e7911e57cac8fb9cda10551a8d41abab
|
||||||
@ -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
|
||||||
BIN
ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.dll
Normal file
BIN
ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
aac02a3f88996c1bfc32c8e18fe9e3f302603628c492fdac6cb40562d25b74a9
|
||||||
BIN
ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.pdb
Normal file
BIN
ADToGMConverter/obj/Debug/net9.0/ADToGMConverter.pdb
Normal file
Binary file not shown.
BIN
ADToGMConverter/obj/Debug/net9.0/apphost.exe
Normal file
BIN
ADToGMConverter/obj/Debug/net9.0/apphost.exe
Normal file
Binary file not shown.
BIN
ADToGMConverter/obj/Debug/net9.0/ref/ADToGMConverter.dll
Normal file
BIN
ADToGMConverter/obj/Debug/net9.0/ref/ADToGMConverter.dll
Normal file
Binary file not shown.
BIN
ADToGMConverter/obj/Debug/net9.0/refint/ADToGMConverter.dll
Normal file
BIN
ADToGMConverter/obj/Debug/net9.0/refint/ADToGMConverter.dll
Normal file
Binary file not shown.
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
80cd9b98a1fe1bb050fc32dfc5efd052461ef13de62dd5f33632b85328838609
|
||||||
@ -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 =
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
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;
|
||||||
BIN
ADToGMConverter/obj/Release/net9.0/ADToGMConverter.assets.cache
Normal file
BIN
ADToGMConverter/obj/Release/net9.0/ADToGMConverter.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
7425643c207df6394324e188023071fa9dd91929600bde6f06aaa04e44618c65
|
||||||
@ -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
|
||||||
BIN
ADToGMConverter/obj/Release/net9.0/ADToGMConverter.dll
Normal file
BIN
ADToGMConverter/obj/Release/net9.0/ADToGMConverter.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
f1f35b67925d85b6260997897637a859d007dbaac54a863d87f78807d58b1624
|
||||||
BIN
ADToGMConverter/obj/Release/net9.0/ADToGMConverter.pdb
Normal file
BIN
ADToGMConverter/obj/Release/net9.0/ADToGMConverter.pdb
Normal file
Binary file not shown.
BIN
ADToGMConverter/obj/Release/net9.0/apphost.exe
Normal file
BIN
ADToGMConverter/obj/Release/net9.0/apphost.exe
Normal file
Binary file not shown.
BIN
ADToGMConverter/obj/Release/net9.0/ref/ADToGMConverter.dll
Normal file
BIN
ADToGMConverter/obj/Release/net9.0/ref/ADToGMConverter.dll
Normal file
Binary file not shown.
BIN
ADToGMConverter/obj/Release/net9.0/refint/ADToGMConverter.dll
Normal file
BIN
ADToGMConverter/obj/Release/net9.0/refint/ADToGMConverter.dll
Normal file
Binary file not shown.
782
ADToGMConverter/obj/project.assets.json
Normal file
782
ADToGMConverter/obj/project.assets.json
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
22
ADToGMConverter/obj/project.nuget.cache
Normal file
22
ADToGMConverter/obj/project.nuget.cache
Normal file
@ -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": []
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user