commit 15c76a1f5efac7ecf9bf60216893e9a2902f1db6 Author: Brandon4466 Date: Sat Apr 5 17:47:26 2025 -0700 inital commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6dd29b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +bin/ \ No newline at end of file diff --git a/MediaControl.csproj b/MediaControl.csproj new file mode 100644 index 0000000..a6d1690 --- /dev/null +++ b/MediaControl.csproj @@ -0,0 +1,14 @@ + + + + Exe + net6.0-windows10.0.19041.0 + enable + enable + + + + + + + diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..4b4ab79 --- /dev/null +++ b/Program.cs @@ -0,0 +1,56 @@ +using System; +using Windows.Media.Control; +using WindowsMediaController; + +namespace MediaControl +{ + class Program + { + static void Main(string[] args) + { + // We expect one argument: playpause, next, or previous + if (args.Length == 0) + { + Console.WriteLine("Usage: MediaControl.exe "); + return; + } + + var command = args[0].ToLowerInvariant(); + + using (var mediaManager = new MediaManager()) + { + mediaManager.Start(); + + // MediaManager.CurrentMediaSessions is a Dictionary + var sessions = mediaManager.CurrentMediaSessions; + foreach (var sessionKvp in sessions) + { + var session = sessionKvp.Value; + + // Filter so only sessions with "spotify" in the Id get commands + // You might need to do a more exact match depending on the session's actual Id: + // e.g., if (session.Id?.Equals("Spotify.exe", StringComparison.OrdinalIgnoreCase) == true) + if (!session.Id?.ToLower().Contains("spotify") == true) + continue; // skip non-Spotify sessions + + var controlSession = session.ControlSession; + if (controlSession == null) + continue; + + switch (command) + { + case "playpause": + controlSession.TryTogglePlayPauseAsync(); + break; + case "next": + controlSession.TrySkipNextAsync(); + break; + case "previous": + controlSession.TrySkipPreviousAsync(); + break; + } + } + } + } + } +} diff --git a/obj/Debug/net6.0-windows10.0.19041.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Debug/net6.0-windows10.0.19041.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..ed92695 --- /dev/null +++ b/obj/Debug/net6.0-windows10.0.19041.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/obj/Debug/net6.0-windows10.0.19041.0/MediaCon.85C0FC7D.Up2Date b/obj/Debug/net6.0-windows10.0.19041.0/MediaCon.85C0FC7D.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.AssemblyInfo.cs b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.AssemblyInfo.cs new file mode 100644 index 0000000..8647ad2 --- /dev/null +++ b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MediaControl")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("MediaControl")] +[assembly: System.Reflection.AssemblyTitleAttribute("MediaControl")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7db7c08 --- /dev/null +++ b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7b8d4ecb0a9f16b5c80f7585101526014dee652e7a4c0c84f30a06f473a30392 diff --git a/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..077daac --- /dev/null +++ b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,23 @@ +is_global = true +build_property.TargetFramework = net6.0-windows10.0.19041.0 +build_property.TargetPlatformMinVersion = 10.0.19041.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MediaControl +build_property.ProjectDir = C:\Users\spong\Documents\Python Programs\MediaControl\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTAotOptimizerEnabled = true +build_property.CsWinRTAotExportsEnabled = +build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptIn = +build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptOut = +build_property.CsWinRTCcwLookupTableGeneratorEnabled = true +build_property.CsWinRTMergeReferencedActivationFactories = +build_property.CsWinRTAotWarningLevel = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 6.0 +build_property.EnableCodeStyleSeverity = diff --git a/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.GlobalUsings.g.cs b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.assets.cache b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.assets.cache new file mode 100644 index 0000000..fd109a9 Binary files /dev/null and b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.assets.cache differ diff --git a/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.csproj.AssemblyReference.cache b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.csproj.AssemblyReference.cache new file mode 100644 index 0000000..496b52e Binary files /dev/null and b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..2e61b47 --- /dev/null +++ b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +f2c930efbecaaf1b635d99ac7753e2c3f37eb73fb3ac95ee6b33dc01eba7ad58 diff --git a/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.csproj.FileListAbsolute.txt b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..8837c25 --- /dev/null +++ b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.csproj.FileListAbsolute.txt @@ -0,0 +1,20 @@ +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Debug\net6.0-windows10.0.19041.0\MediaControl.exe +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Debug\net6.0-windows10.0.19041.0\MediaControl.deps.json +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Debug\net6.0-windows10.0.19041.0\MediaControl.runtimeconfig.json +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Debug\net6.0-windows10.0.19041.0\MediaControl.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Debug\net6.0-windows10.0.19041.0\MediaControl.pdb +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Debug\net6.0-windows10.0.19041.0\Microsoft.Windows.SDK.NET.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Debug\net6.0-windows10.0.19041.0\WinRT.Runtime.dll +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Debug\net6.0-windows10.0.19041.0\MediaControl.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Debug\net6.0-windows10.0.19041.0\MediaControl.AssemblyInfoInputs.cache +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Debug\net6.0-windows10.0.19041.0\MediaControl.AssemblyInfo.cs +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Debug\net6.0-windows10.0.19041.0\MediaControl.csproj.CoreCompileInputs.cache +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Debug\net6.0-windows10.0.19041.0\MediaCon.85C0FC7D.Up2Date +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Debug\net6.0-windows10.0.19041.0\MediaControl.dll +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Debug\net6.0-windows10.0.19041.0\refint\MediaControl.dll +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Debug\net6.0-windows10.0.19041.0\MediaControl.pdb +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Debug\net6.0-windows10.0.19041.0\MediaControl.genruntimeconfig.cache +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Debug\net6.0-windows10.0.19041.0\ref\MediaControl.dll +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Debug\net6.0-windows10.0.19041.0\MediaControl.csproj.AssemblyReference.cache +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Debug\net6.0-windows10.0.19041.0\WindowsMediaController.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Debug\net6.0-windows10.0.19041.0\Microsoft.Extensions.Logging.Abstractions.dll diff --git a/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.dll b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.dll new file mode 100644 index 0000000..cdac70b Binary files /dev/null and b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.dll differ diff --git a/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.genruntimeconfig.cache b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.genruntimeconfig.cache new file mode 100644 index 0000000..767b729 --- /dev/null +++ b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.genruntimeconfig.cache @@ -0,0 +1 @@ +0dfcc5d0d27d7d0e9c13fa2a146f73f805920ac178693ad09482a9260677a9c5 diff --git a/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.pdb b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.pdb new file mode 100644 index 0000000..31bca26 Binary files /dev/null and b/obj/Debug/net6.0-windows10.0.19041.0/MediaControl.pdb differ diff --git a/obj/Debug/net6.0-windows10.0.19041.0/apphost.exe b/obj/Debug/net6.0-windows10.0.19041.0/apphost.exe new file mode 100644 index 0000000..1a7152a Binary files /dev/null and b/obj/Debug/net6.0-windows10.0.19041.0/apphost.exe differ diff --git a/obj/Debug/net6.0-windows10.0.19041.0/ref/MediaControl.dll b/obj/Debug/net6.0-windows10.0.19041.0/ref/MediaControl.dll new file mode 100644 index 0000000..0566595 Binary files /dev/null and b/obj/Debug/net6.0-windows10.0.19041.0/ref/MediaControl.dll differ diff --git a/obj/Debug/net6.0-windows10.0.19041.0/refint/MediaControl.dll b/obj/Debug/net6.0-windows10.0.19041.0/refint/MediaControl.dll new file mode 100644 index 0000000..0566595 Binary files /dev/null and b/obj/Debug/net6.0-windows10.0.19041.0/refint/MediaControl.dll differ diff --git a/obj/MediaControl.csproj.nuget.dgspec.json b/obj/MediaControl.csproj.nuget.dgspec.json new file mode 100644 index 0000000..c4e487f --- /dev/null +++ b/obj/MediaControl.csproj.nuget.dgspec.json @@ -0,0 +1,117 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\spong\\Documents\\Python Programs\\MediaControl\\MediaControl.csproj": {} + }, + "projects": { + "C:\\Users\\spong\\Documents\\Python Programs\\MediaControl\\MediaControl.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\spong\\Documents\\Python Programs\\MediaControl\\MediaControl.csproj", + "projectName": "MediaControl", + "projectPath": "C:\\Users\\spong\\Documents\\Python Programs\\MediaControl\\MediaControl.csproj", + "packagesPath": "C:\\Users\\spong\\.nuget\\packages\\", + "outputPath": "C:\\Users\\spong\\Documents\\Python Programs\\MediaControl\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\spong\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows10.0.19041.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows10.0.19041": { + "targetAlias": "net6.0-windows10.0.19041.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.200" + }, + "frameworks": { + "net6.0-windows10.0.19041": { + "targetAlias": "net6.0-windows10.0.19041.0", + "dependencies": { + "Dubya.WindowsMediaController": { + "target": "Package", + "version": "[2.5.5, )" + }, + "Microsoft.NET.ILLink.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[7.0.100-1.23211.1, )", + "autoReferenced": true + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[7.0.100-1.23211.1, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.Windows.SDK.NET.Ref", + "version": "[10.0.19041.55, 10.0.19041.55]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.Windows.SDK.NET.Ref.Windows": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.201\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/obj/MediaControl.csproj.nuget.g.props b/obj/MediaControl.csproj.nuget.g.props new file mode 100644 index 0000000..e5cab3a --- /dev/null +++ b/obj/MediaControl.csproj.nuget.g.props @@ -0,0 +1,33 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\spong\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.13.1 + + + + + + + + Dubya.WindowsMediaController + 2.5.5 + Content + false + False + Icon.ico + + + + + + + + C:\Users\spong\.nuget\packages\microsoft.net.illink.tasks\7.0.100-1.23211.1 + + \ No newline at end of file diff --git a/obj/MediaControl.csproj.nuget.g.targets b/obj/MediaControl.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/MediaControl.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Release/net6.0-windows10.0.19041.0/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..ed92695 --- /dev/null +++ b/obj/Release/net6.0-windows10.0.19041.0/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaCon.85C0FC7D.Up2Date b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaCon.85C0FC7D.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.AssemblyInfo.cs b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.AssemblyInfo.cs new file mode 100644 index 0000000..e7091df --- /dev/null +++ b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MediaControl")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("MediaControl")] +[assembly: System.Reflection.AssemblyTitleAttribute("MediaControl")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.AssemblyInfoInputs.cache b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1b6ff94 --- /dev/null +++ b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +985322da120c616ef58d4976cd004bf0efd8da960edb6669ef4de5d0b012917b diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c741169 --- /dev/null +++ b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,27 @@ +is_global = true +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = true +build_property.IncludeAllContentForSelfExtract = +build_property.TargetFramework = net6.0-windows10.0.19041.0 +build_property.TargetPlatformMinVersion = 10.0.19041.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = MediaControl +build_property.ProjectDir = C:\Users\spong\Documents\Python Programs\MediaControl\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTAotOptimizerEnabled = true +build_property.CsWinRTAotExportsEnabled = +build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptIn = +build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptOut = +build_property.CsWinRTCcwLookupTableGeneratorEnabled = true +build_property.CsWinRTMergeReferencedActivationFactories = +build_property.CsWinRTAotWarningLevel = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 6.0 +build_property.EnableCodeStyleSeverity = diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.GlobalUsings.g.cs b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.assets.cache b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.assets.cache new file mode 100644 index 0000000..54d2ba2 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.assets.cache differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.csproj.AssemblyReference.cache b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.csproj.AssemblyReference.cache new file mode 100644 index 0000000..496b52e Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.csproj.CoreCompileInputs.cache b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..e051bf5 --- /dev/null +++ b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +126e69d719a9f66ab567b1d66f50a5d17f8806220fa894df84eeac88e63af20d diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.csproj.FileListAbsolute.txt b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f77c953 --- /dev/null +++ b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.csproj.FileListAbsolute.txt @@ -0,0 +1,242 @@ +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.exe +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.deps.json +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.runtimeconfig.json +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.pdb +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\WindowsMediaController.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\Microsoft.CSharp.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\Microsoft.VisualBasic.Core.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\Microsoft.VisualBasic.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\Microsoft.Win32.Primitives.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\Microsoft.Win32.Registry.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.AppContext.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Buffers.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Collections.Concurrent.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Collections.Immutable.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Collections.NonGeneric.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Collections.Specialized.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Collections.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.ComponentModel.Annotations.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.ComponentModel.DataAnnotations.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.ComponentModel.EventBasedAsync.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.ComponentModel.Primitives.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.ComponentModel.TypeConverter.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.ComponentModel.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Configuration.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Console.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Core.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Data.Common.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Data.DataSetExtensions.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Data.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Diagnostics.Contracts.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Diagnostics.Debug.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Diagnostics.DiagnosticSource.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Diagnostics.FileVersionInfo.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Diagnostics.Process.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Diagnostics.StackTrace.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Diagnostics.Tools.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Diagnostics.TraceSource.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Diagnostics.Tracing.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Drawing.Primitives.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Drawing.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Dynamic.Runtime.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Formats.Asn1.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Globalization.Calendars.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Globalization.Extensions.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Globalization.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.Compression.Brotli.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.Compression.FileSystem.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.Compression.ZipFile.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.Compression.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.FileSystem.AccessControl.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.FileSystem.DriveInfo.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.FileSystem.Primitives.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.FileSystem.Watcher.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.FileSystem.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.IsolatedStorage.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.MemoryMappedFiles.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.Pipes.AccessControl.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.Pipes.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.UnmanagedMemoryStream.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Linq.Expressions.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Linq.Parallel.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Linq.Queryable.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Linq.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Memory.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.Http.Json.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.Http.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.HttpListener.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.Mail.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.NameResolution.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.NetworkInformation.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.Ping.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.Primitives.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.Quic.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.Requests.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.Security.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.ServicePoint.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.Sockets.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.WebClient.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.WebHeaderCollection.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.WebProxy.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.WebSockets.Client.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.WebSockets.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Net.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Numerics.Vectors.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Numerics.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.ObjectModel.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Private.CoreLib.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Private.DataContractSerialization.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Private.Uri.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Private.Xml.Linq.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Private.Xml.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Reflection.DispatchProxy.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Reflection.Emit.ILGeneration.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Reflection.Emit.Lightweight.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Reflection.Emit.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Reflection.Extensions.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Reflection.Metadata.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Reflection.Primitives.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Reflection.TypeExtensions.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Reflection.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Resources.Reader.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Resources.ResourceManager.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Resources.Writer.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.CompilerServices.VisualC.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.Extensions.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.Handles.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.InteropServices.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.Intrinsics.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.Loader.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.Numerics.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.Serialization.Formatters.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.Serialization.Json.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.Serialization.Primitives.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.Serialization.Xml.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.Serialization.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Runtime.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.AccessControl.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.Claims.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.Cryptography.Algorithms.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.Cryptography.Cng.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.Cryptography.Csp.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.Cryptography.Encoding.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.Cryptography.OpenSsl.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.Cryptography.Primitives.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.Cryptography.X509Certificates.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.Principal.Windows.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.Principal.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.SecureString.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Security.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.ServiceModel.Web.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.ServiceProcess.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Text.Encoding.CodePages.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Text.Encoding.Extensions.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Text.Encoding.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Text.Encodings.Web.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Text.Json.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Text.RegularExpressions.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Threading.Channels.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Threading.Overlapped.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Threading.Tasks.Dataflow.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Threading.Tasks.Extensions.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Threading.Tasks.Parallel.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Threading.Tasks.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Threading.Thread.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Threading.ThreadPool.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Threading.Timer.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Threading.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Transactions.Local.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Transactions.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.ValueTuple.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Web.HttpUtility.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Web.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Windows.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Xml.Linq.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Xml.ReaderWriter.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Xml.Serialization.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Xml.XDocument.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Xml.XPath.XDocument.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Xml.XPath.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Xml.XmlDocument.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Xml.XmlSerializer.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.Xml.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\WindowsBase.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\mscorlib.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\netstandard.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\Microsoft.DiaSymReader.Native.amd64.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\System.IO.Compression.Native.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-console-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-console-l1-2-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-datetime-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-debug-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-errorhandling-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-fibers-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-file-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-file-l1-2-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-file-l2-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-handle-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-heap-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-interlocked-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-libraryloader-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-localization-l1-2-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-memory-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-namedpipe-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-processenvironment-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-processthreads-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-processthreads-l1-1-1.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-profile-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-rtlsupport-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-string-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-synch-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-synch-l1-2-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-sysinfo-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-timezone-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-core-util-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-conio-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-convert-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-environment-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-filesystem-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-heap-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-locale-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-math-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-multibyte-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-private-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-process-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-runtime-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-stdio-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-string-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-time-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\api-ms-win-crt-utility-l1-1-0.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\clretwrc.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\clrjit.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\coreclr.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\createdump.exe +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\dbgshim.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\hostfxr.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\hostpolicy.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\mscordaccore.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\mscordaccore_amd64_amd64_6.0.3624.51421.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\mscordbi.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\mscorrc.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\msquic.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\ucrtbase.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\Microsoft.Windows.SDK.NET.dll +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\WinRT.Runtime.dll +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.csproj.AssemblyReference.cache +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.AssemblyInfoInputs.cache +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.AssemblyInfo.cs +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.csproj.CoreCompileInputs.cache +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Release\net6.0-windows10.0.19041.0\win-x64\MediaCon.85C0FC7D.Up2Date +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.dll +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Release\net6.0-windows10.0.19041.0\win-x64\refint\MediaControl.dll +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.pdb +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Release\net6.0-windows10.0.19041.0\win-x64\MediaControl.genruntimeconfig.cache +C:\Users\spong\Documents\Python Programs\MediaControl\obj\Release\net6.0-windows10.0.19041.0\win-x64\ref\MediaControl.dll diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.deps.json b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.deps.json new file mode 100644 index 0000000..9d165d0 --- /dev/null +++ b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.deps.json @@ -0,0 +1,309 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {}, + ".NETCoreApp,Version=v6.0/win-x64": { + "MediaControl/1.0.0": { + "dependencies": { + "Dubya.WindowsMediaController": "2.5.5", + "Microsoft.NET.ILLink.Analyzers": "7.0.100-1.23211.1", + "Microsoft.NET.ILLink.Tasks": "7.0.100-1.23211.1", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "6.0.36", + "runtimepack.Microsoft.Windows.SDK.NET.Ref": "10.0.19041.55" + }, + "runtime": { + "MediaControl.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.36": { + "runtime": { + "System.Collections.Concurrent.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Console.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + } + } + }, + "runtimepack.Microsoft.Windows.SDK.NET.Ref/10.0.19041.55": { + "runtime": { + "Microsoft.Windows.SDK.NET.dll": { + "assemblyVersion": "10.0.19041.38", + "fileVersion": "10.0.19041.55" + }, + "WinRT.Runtime.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "2.2.0.48161" + } + } + }, + "Dubya.WindowsMediaController/2.5.5": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "runtime": { + "lib/net6.0-windows10.0.19041/WindowsMediaController.dll": { + "assemblyVersion": "2.5.5.0", + "fileVersion": "2.5.5.0" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.NET.ILLink.Analyzers/7.0.100-1.23211.1": {}, + "Microsoft.NET.ILLink.Tasks/7.0.100-1.23211.1": {} + } + }, + "libraries": { + "MediaControl/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.36": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.Windows.SDK.NET.Ref/10.0.19041.55": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Dubya.WindowsMediaController/2.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dcOMe1DUEj5XGHu56jCVoY2zcTLTuvAeI8ICM+CESPPb/HMsmMY4wENZwn1gJTEQF+sIDU/mobA1b/v04cHTYA==", + "path": "dubya.windowsmediacontroller/2.5.5", + "hashPath": "dubya.windowsmediacontroller.2.5.5.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.NET.ILLink.Analyzers/7.0.100-1.23211.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0GvbEgDGcUQA9KuWcQU1WwYHXt1tBzNr1Nls/M57rM7NA/AndFwCaCEoJpJkmxRY7xLlPDBnmGp8h5+FNqUngg==", + "path": "microsoft.net.illink.analyzers/7.0.100-1.23211.1", + "hashPath": "microsoft.net.illink.analyzers.7.0.100-1.23211.1.nupkg.sha512" + }, + "Microsoft.NET.ILLink.Tasks/7.0.100-1.23211.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tvG8XZYLjT0o3WicCyKBZysVWo1jC9HdCFmNRmddx3WbAz0UCsd0qKZqpiEo99VLA8Re+FzWK51OcRldQPbt2Q==", + "path": "microsoft.net.illink.tasks/7.0.100-1.23211.1", + "hashPath": "microsoft.net.illink.tasks.7.0.100-1.23211.1.nupkg.sha512" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ], + "win-x64-aot": [ + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win10-x64": [ + "win10", + "win81-x64", + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win10-x64-aot": [ + "win10-aot", + "win10-x64", + "win10", + "win81-x64-aot", + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win7-x64": [ + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win7-x64-aot": [ + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win8-x64": [ + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win8-x64-aot": [ + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win81-x64": [ + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win81-x64-aot": [ + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.dll new file mode 100644 index 0000000..859a42a Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.genbundle.cache b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.genbundle.cache new file mode 100644 index 0000000..5593917 --- /dev/null +++ b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.genbundle.cache @@ -0,0 +1 @@ +195a09c663acb1b6b7bdd9cee946b24b53d205e4c5e98287da17d907a127eae2 diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.genpublishdeps.cache b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.genpublishdeps.cache new file mode 100644 index 0000000..d6887b9 --- /dev/null +++ b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.genpublishdeps.cache @@ -0,0 +1 @@ +3618728efb3c5536d76a01e6f74cb9da425ef934f06bafa1ea9f2ed079584818 diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.genruntimeconfig.cache b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.genruntimeconfig.cache new file mode 100644 index 0000000..a4eb4ef --- /dev/null +++ b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.genruntimeconfig.cache @@ -0,0 +1 @@ +e4f92755a199e68da289637a2fce620594727704785a6279d33e00dae19440f2 diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.pdb b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.pdb new file mode 100644 index 0000000..0472f93 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.pdb differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/PublishOutputs.66a95bec05.txt b/obj/Release/net6.0-windows10.0.19041.0/win-x64/PublishOutputs.66a95bec05.txt new file mode 100644 index 0000000..7589147 --- /dev/null +++ b/obj/Release/net6.0-windows10.0.19041.0/win-x64/PublishOutputs.66a95bec05.txt @@ -0,0 +1,2 @@ +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\publish\MediaControl.pdb +C:\Users\spong\Documents\Python Programs\MediaControl\bin\Release\net6.0-windows10.0.19041.0\win-x64\publish\MediaControl.exe diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/apphost.exe b/obj/Release/net6.0-windows10.0.19041.0/win-x64/apphost.exe new file mode 100644 index 0000000..1a7152a Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/apphost.exe differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/Link.semaphore b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/Link.semaphore new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/MediaControl.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/MediaControl.dll new file mode 100644 index 0000000..859a42a Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/MediaControl.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/MediaControl.pdb b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/MediaControl.pdb new file mode 100644 index 0000000..0472f93 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/MediaControl.pdb differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/Microsoft.Extensions.Logging.Abstractions.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..c2d071b Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/Microsoft.Windows.SDK.NET.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/Microsoft.Windows.SDK.NET.dll new file mode 100644 index 0000000..c2a6bd5 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/Microsoft.Windows.SDK.NET.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Collections.Concurrent.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Collections.Concurrent.dll new file mode 100644 index 0000000..6c37b79 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Collections.Concurrent.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Collections.Immutable.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Collections.Immutable.dll new file mode 100644 index 0000000..0dc557f Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Collections.Immutable.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Collections.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Collections.dll new file mode 100644 index 0000000..d926d6e Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Collections.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.ComponentModel.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.ComponentModel.dll new file mode 100644 index 0000000..f6b7f93 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.ComponentModel.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Console.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Console.dll new file mode 100644 index 0000000..f6aaad7 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Console.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Diagnostics.StackTrace.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..419eae5 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Diagnostics.StackTrace.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.IO.Compression.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.IO.Compression.dll new file mode 100644 index 0000000..1924726 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.IO.Compression.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.IO.MemoryMappedFiles.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..dfbd6dd Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.IO.MemoryMappedFiles.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Linq.Expressions.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Linq.Expressions.dll new file mode 100644 index 0000000..1c5b1ab Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Linq.Expressions.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Linq.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Linq.dll new file mode 100644 index 0000000..1f4f835 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Linq.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.ObjectModel.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.ObjectModel.dll new file mode 100644 index 0000000..44ef44b Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.ObjectModel.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Private.CoreLib.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Private.CoreLib.dll new file mode 100644 index 0000000..09e600e Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Private.CoreLib.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Private.Uri.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Private.Uri.dll new file mode 100644 index 0000000..63d3353 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Private.Uri.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Reflection.Metadata.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Reflection.Metadata.dll new file mode 100644 index 0000000..7ff2cb7 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Reflection.Metadata.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Runtime.CompilerServices.Unsafe.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..0d0c44a Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Runtime.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Runtime.dll new file mode 100644 index 0000000..a3dae4c Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Runtime.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Security.Cryptography.Algorithms.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..87311ea Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Security.Cryptography.Algorithms.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Security.Cryptography.Primitives.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..4dddd31 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Security.Cryptography.Primitives.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Threading.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Threading.dll new file mode 100644 index 0000000..e0efb71 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/System.Threading.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/WinRT.Runtime.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/WinRT.Runtime.dll new file mode 100644 index 0000000..639b680 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/WinRT.Runtime.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/WindowsMediaController.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/WindowsMediaController.dll new file mode 100644 index 0000000..a60d63b Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/linked/WindowsMediaController.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/ref/MediaControl.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/ref/MediaControl.dll new file mode 100644 index 0000000..be6788d Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/ref/MediaControl.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/refint/MediaControl.dll b/obj/Release/net6.0-windows10.0.19041.0/win-x64/refint/MediaControl.dll new file mode 100644 index 0000000..be6788d Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/refint/MediaControl.dll differ diff --git a/obj/Release/net6.0-windows10.0.19041.0/win-x64/singlefilehost.exe b/obj/Release/net6.0-windows10.0.19041.0/win-x64/singlefilehost.exe new file mode 100644 index 0000000..9ef7b88 Binary files /dev/null and b/obj/Release/net6.0-windows10.0.19041.0/win-x64/singlefilehost.exe differ diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..f778f7b --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,394 @@ +{ + "version": 3, + "targets": { + "net6.0-windows10.0.19041": { + "Dubya.WindowsMediaController/2.5.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "compile": { + "lib/net6.0-windows10.0.19041/WindowsMediaController.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.19041/WindowsMediaController.dll": {} + }, + "contentFiles": { + "contentFiles/any/net6.0-windows10.0.19041/Icon.ico": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": false + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.NET.ILLink.Analyzers/7.0.100-1.23211.1": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Analyzers.props": {} + } + }, + "Microsoft.NET.ILLink.Tasks/7.0.100-1.23211.1": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + }, + "net6.0-windows10.0.19041/win-x64": { + "Dubya.WindowsMediaController/2.5.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "compile": { + "lib/net6.0-windows10.0.19041/WindowsMediaController.dll": {} + }, + "runtime": { + "lib/net6.0-windows10.0.19041/WindowsMediaController.dll": {} + }, + "contentFiles": { + "contentFiles/any/net6.0-windows10.0.19041/Icon.ico": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": false + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.NET.ILLink.Analyzers/7.0.100-1.23211.1": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Analyzers.props": {} + } + }, + "Microsoft.NET.ILLink.Tasks/7.0.100-1.23211.1": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + } + } + }, + "libraries": { + "Dubya.WindowsMediaController/2.5.5": { + "sha512": "dcOMe1DUEj5XGHu56jCVoY2zcTLTuvAeI8ICM+CESPPb/HMsmMY4wENZwn1gJTEQF+sIDU/mobA1b/v04cHTYA==", + "type": "package", + "path": "dubya.windowsmediacontroller/2.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "content/Icon.ico", + "contentFiles/any/net461/Icon.ico", + "contentFiles/any/net462/Icon.ico", + "contentFiles/any/net47/Icon.ico", + "contentFiles/any/net471/Icon.ico", + "contentFiles/any/net472/Icon.ico", + "contentFiles/any/net48/Icon.ico", + "contentFiles/any/net481/Icon.ico", + "contentFiles/any/net5.0-windows10.0.17763/Icon.ico", + "contentFiles/any/net5.0-windows10.0.18362/Icon.ico", + "contentFiles/any/net5.0-windows10.0.19041/Icon.ico", + "contentFiles/any/net5.0-windows10.0.22000/Icon.ico", + "contentFiles/any/net6.0-windows10.0.17763/Icon.ico", + "contentFiles/any/net6.0-windows10.0.18362/Icon.ico", + "contentFiles/any/net6.0-windows10.0.19041/Icon.ico", + "contentFiles/any/net6.0-windows10.0.22000/Icon.ico", + "contentFiles/any/net6.0-windows10.0.22621/Icon.ico", + "contentFiles/any/net7.0-windows10.0.17763/Icon.ico", + "contentFiles/any/net7.0-windows10.0.18362/Icon.ico", + "contentFiles/any/net7.0-windows10.0.19041/Icon.ico", + "contentFiles/any/net7.0-windows10.0.22000/Icon.ico", + "contentFiles/any/net7.0-windows10.0.22621/Icon.ico", + "contentFiles/any/net8.0-windows10.0.17763/Icon.ico", + "contentFiles/any/net8.0-windows10.0.18362/Icon.ico", + "contentFiles/any/net8.0-windows10.0.19041/Icon.ico", + "contentFiles/any/net8.0-windows10.0.22000/Icon.ico", + "contentFiles/any/net8.0-windows10.0.22621/Icon.ico", + "contentFiles/any/netcoreapp3.0/Icon.ico", + "contentFiles/any/netcoreapp3.1/Icon.ico", + "dubya.windowsmediacontroller.2.5.5.nupkg.sha512", + "dubya.windowsmediacontroller.nuspec", + "lib/net461/WindowsMediaController.dll", + "lib/net462/WindowsMediaController.dll", + "lib/net47/WindowsMediaController.dll", + "lib/net471/WindowsMediaController.dll", + "lib/net472/WindowsMediaController.dll", + "lib/net48/WindowsMediaController.dll", + "lib/net481/WindowsMediaController.dll", + "lib/net5.0-windows10.0.17763/WindowsMediaController.dll", + "lib/net5.0-windows10.0.18362/WindowsMediaController.dll", + "lib/net5.0-windows10.0.19041/WindowsMediaController.dll", + "lib/net5.0-windows10.0.22000/WindowsMediaController.dll", + "lib/net6.0-windows10.0.17763/WindowsMediaController.dll", + "lib/net6.0-windows10.0.18362/WindowsMediaController.dll", + "lib/net6.0-windows10.0.19041/WindowsMediaController.dll", + "lib/net6.0-windows10.0.22000/WindowsMediaController.dll", + "lib/net6.0-windows10.0.22621/WindowsMediaController.dll", + "lib/net7.0-windows10.0.17763/WindowsMediaController.dll", + "lib/net7.0-windows10.0.18362/WindowsMediaController.dll", + "lib/net7.0-windows10.0.19041/WindowsMediaController.dll", + "lib/net7.0-windows10.0.22000/WindowsMediaController.dll", + "lib/net7.0-windows10.0.22621/WindowsMediaController.dll", + "lib/net8.0-windows10.0.17763/WindowsMediaController.dll", + "lib/net8.0-windows10.0.18362/WindowsMediaController.dll", + "lib/net8.0-windows10.0.19041/WindowsMediaController.dll", + "lib/net8.0-windows10.0.22000/WindowsMediaController.dll", + "lib/net8.0-windows10.0.22621/WindowsMediaController.dll", + "lib/netcoreapp3.0/WindowsMediaController.dll", + "lib/netcoreapp3.1/WindowsMediaController.dll" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.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.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NET.ILLink.Analyzers/7.0.100-1.23211.1": { + "sha512": "0GvbEgDGcUQA9KuWcQU1WwYHXt1tBzNr1Nls/M57rM7NA/AndFwCaCEoJpJkmxRY7xLlPDBnmGp8h5+FNqUngg==", + "type": "package", + "path": "microsoft.net.illink.analyzers/7.0.100-1.23211.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/ILLink.CodeFixProvider.dll", + "analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll", + "build/Microsoft.NET.ILLink.Analyzers.props", + "microsoft.net.illink.analyzers.7.0.100-1.23211.1.nupkg.sha512", + "microsoft.net.illink.analyzers.nuspec" + ] + }, + "Microsoft.NET.ILLink.Tasks/7.0.100-1.23211.1": { + "sha512": "tvG8XZYLjT0o3WicCyKBZysVWo1jC9HdCFmNRmddx3WbAz0UCsd0qKZqpiEo99VLA8Re+FzWK51OcRldQPbt2Q==", + "type": "package", + "path": "microsoft.net.illink.tasks/7.0.100-1.23211.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "Sdk/Sdk.props", + "build/6.0_suppressions.xml", + "build/Microsoft.NET.ILLink.Tasks.props", + "build/Microsoft.NET.ILLink.targets", + "microsoft.net.illink.tasks.7.0.100-1.23211.1.nupkg.sha512", + "microsoft.net.illink.tasks.nuspec", + "tools/net472/ILLink.Tasks.dll", + "tools/net472/Mono.Cecil.dll", + "tools/net472/System.Buffers.dll", + "tools/net472/System.Collections.Immutable.dll", + "tools/net472/System.Memory.dll", + "tools/net472/System.Numerics.Vectors.dll", + "tools/net472/System.Reflection.Metadata.dll", + "tools/net472/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net7.0/ILLink.Tasks.deps.json", + "tools/net7.0/ILLink.Tasks.dll", + "tools/net7.0/Mono.Cecil.Pdb.dll", + "tools/net7.0/Mono.Cecil.dll", + "tools/net7.0/illink.deps.json", + "tools/net7.0/illink.dll", + "tools/net7.0/illink.runtimeconfig.json" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0-windows10.0.19041": [ + "Dubya.WindowsMediaController >= 2.5.5", + "Microsoft.NET.ILLink.Analyzers >= 7.0.100-1.23211.1", + "Microsoft.NET.ILLink.Tasks >= 7.0.100-1.23211.1" + ] + }, + "packageFolders": { + "C:\\Users\\spong\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\spong\\Documents\\Python Programs\\MediaControl\\MediaControl.csproj", + "projectName": "MediaControl", + "projectPath": "C:\\Users\\spong\\Documents\\Python Programs\\MediaControl\\MediaControl.csproj", + "packagesPath": "C:\\Users\\spong\\.nuget\\packages\\", + "outputPath": "C:\\Users\\spong\\Documents\\Python Programs\\MediaControl\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\spong\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows10.0.19041.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows10.0.19041": { + "targetAlias": "net6.0-windows10.0.19041.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.200" + }, + "frameworks": { + "net6.0-windows10.0.19041": { + "targetAlias": "net6.0-windows10.0.19041.0", + "dependencies": { + "Dubya.WindowsMediaController": { + "target": "Package", + "version": "[2.5.5, )" + }, + "Microsoft.NET.ILLink.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[7.0.100-1.23211.1, )", + "autoReferenced": true + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[7.0.100-1.23211.1, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.Windows.SDK.NET.Ref", + "version": "[10.0.19041.55, 10.0.19041.55]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.Windows.SDK.NET.Ref.Windows": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.201\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..f03df70 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,17 @@ +{ + "version": 2, + "dgSpecHash": "XN3WyYqDmAQ=", + "success": true, + "projectFilePath": "C:\\Users\\spong\\Documents\\Python Programs\\MediaControl\\MediaControl.csproj", + "expectedPackageFiles": [ + "C:\\Users\\spong\\.nuget\\packages\\dubya.windowsmediacontroller\\2.5.5\\dubya.windowsmediacontroller.2.5.5.nupkg.sha512", + "C:\\Users\\spong\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\spong\\.nuget\\packages\\microsoft.net.illink.analyzers\\7.0.100-1.23211.1\\microsoft.net.illink.analyzers.7.0.100-1.23211.1.nupkg.sha512", + "C:\\Users\\spong\\.nuget\\packages\\microsoft.net.illink.tasks\\7.0.100-1.23211.1\\microsoft.net.illink.tasks.7.0.100-1.23211.1.nupkg.sha512", + "C:\\Users\\spong\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\6.0.36\\microsoft.netcore.app.runtime.win-x64.6.0.36.nupkg.sha512", + "C:\\Users\\spong\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\6.0.36\\microsoft.windowsdesktop.app.runtime.win-x64.6.0.36.nupkg.sha512", + "C:\\Users\\spong\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\6.0.36\\microsoft.aspnetcore.app.runtime.win-x64.6.0.36.nupkg.sha512", + "C:\\Users\\spong\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.55\\microsoft.windows.sdk.net.ref.10.0.19041.55.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file