inital commit
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
bin/
|
||||
14
MediaControl.csproj
Normal file
14
MediaControl.csproj
Normal file
@@ -0,0 +1,14 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Dubya.WindowsMediaController" Version="2.5.5" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
56
Program.cs
Normal file
56
Program.cs
Normal file
@@ -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 <playpause|next|previous>");
|
||||
return;
|
||||
}
|
||||
|
||||
var command = args[0].ToLowerInvariant();
|
||||
|
||||
using (var mediaManager = new MediaManager())
|
||||
{
|
||||
mediaManager.Start();
|
||||
|
||||
// MediaManager.CurrentMediaSessions is a Dictionary<string, MediaSession>
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
||||
@@ -0,0 +1,24 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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("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.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
7b8d4ecb0a9f16b5c80f7585101526014dee652e7a4c0c84f30a06f473a30392
|
||||
@@ -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 =
|
||||
@@ -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
obj/Debug/net6.0-windows10.0.19041.0/MediaControl.assets.cache
Normal file
BIN
obj/Debug/net6.0-windows10.0.19041.0/MediaControl.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
f2c930efbecaaf1b635d99ac7753e2c3f37eb73fb3ac95ee6b33dc01eba7ad58
|
||||
@@ -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
|
||||
BIN
obj/Debug/net6.0-windows10.0.19041.0/MediaControl.dll
Normal file
BIN
obj/Debug/net6.0-windows10.0.19041.0/MediaControl.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
0dfcc5d0d27d7d0e9c13fa2a146f73f805920ac178693ad09482a9260677a9c5
|
||||
BIN
obj/Debug/net6.0-windows10.0.19041.0/MediaControl.pdb
Normal file
BIN
obj/Debug/net6.0-windows10.0.19041.0/MediaControl.pdb
Normal file
Binary file not shown.
BIN
obj/Debug/net6.0-windows10.0.19041.0/apphost.exe
Normal file
BIN
obj/Debug/net6.0-windows10.0.19041.0/apphost.exe
Normal file
Binary file not shown.
BIN
obj/Debug/net6.0-windows10.0.19041.0/ref/MediaControl.dll
Normal file
BIN
obj/Debug/net6.0-windows10.0.19041.0/ref/MediaControl.dll
Normal file
Binary file not shown.
BIN
obj/Debug/net6.0-windows10.0.19041.0/refint/MediaControl.dll
Normal file
BIN
obj/Debug/net6.0-windows10.0.19041.0/refint/MediaControl.dll
Normal file
Binary file not shown.
117
obj/MediaControl.csproj.nuget.dgspec.json
Normal file
117
obj/MediaControl.csproj.nuget.dgspec.json
Normal file
@@ -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": []
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
obj/MediaControl.csproj.nuget.g.props
Normal file
33
obj/MediaControl.csproj.nuget.g.props
Normal file
@@ -0,0 +1,33 @@
|
||||
<?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\spong\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.13.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\spong\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Content Include="$(NuGetPackageRoot)dubya.windowsmediacontroller\2.5.5\contentFiles\any\net6.0-windows10.0.19041\Icon.ico" Condition="Exists('$(NuGetPackageRoot)dubya.windowsmediacontroller\2.5.5\contentFiles\any\net6.0-windows10.0.19041\Icon.ico')">
|
||||
<NuGetPackageId>Dubya.WindowsMediaController</NuGetPackageId>
|
||||
<NuGetPackageVersion>2.5.5</NuGetPackageVersion>
|
||||
<NuGetItemType>Content</NuGetItemType>
|
||||
<Pack>false</Pack>
|
||||
<Private>False</Private>
|
||||
<Link>Icon.ico</Link>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.net.illink.tasks\7.0.100-1.23211.1\build\Microsoft.NET.ILLink.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.illink.tasks\7.0.100-1.23211.1\build\Microsoft.NET.ILLink.Tasks.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.net.illink.analyzers\7.0.100-1.23211.1\build\Microsoft.NET.ILLink.Analyzers.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.illink.analyzers\7.0.100-1.23211.1\build\Microsoft.NET.ILLink.Analyzers.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_NET_ILLink_Tasks Condition=" '$(PkgMicrosoft_NET_ILLink_Tasks)' == '' ">C:\Users\spong\.nuget\packages\microsoft.net.illink.tasks\7.0.100-1.23211.1</PkgMicrosoft_NET_ILLink_Tasks>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
2
obj/MediaControl.csproj.nuget.g.targets
Normal file
2
obj/MediaControl.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
||||
@@ -0,0 +1,24 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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("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.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
985322da120c616ef58d4976cd004bf0efd8da960edb6669ef4de5d0b012917b
|
||||
@@ -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 =
|
||||
@@ -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;
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
126e69d719a9f66ab567b1d66f50a5d17f8806220fa894df84eeac88e63af20d
|
||||
@@ -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
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
BIN
obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.dll
Normal file
BIN
obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
195a09c663acb1b6b7bdd9cee946b24b53d205e4c5e98287da17d907a127eae2
|
||||
@@ -0,0 +1 @@
|
||||
3618728efb3c5536d76a01e6f74cb9da425ef934f06bafa1ea9f2ed079584818
|
||||
@@ -0,0 +1 @@
|
||||
e4f92755a199e68da289637a2fce620594727704785a6279d33e00dae19440f2
|
||||
BIN
obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.pdb
Normal file
BIN
obj/Release/net6.0-windows10.0.19041.0/win-x64/MediaControl.pdb
Normal file
Binary file not shown.
@@ -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
|
||||
BIN
obj/Release/net6.0-windows10.0.19041.0/win-x64/apphost.exe
Normal file
BIN
obj/Release/net6.0-windows10.0.19041.0/win-x64/apphost.exe
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.
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.
394
obj/project.assets.json
Normal file
394
obj/project.assets.json
Normal file
@@ -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": []
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
17
obj/project.nuget.cache
Normal file
17
obj/project.nuget.cache
Normal file
@@ -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": []
|
||||
}
|
||||
Reference in New Issue
Block a user