Update to .NET 10 LTS

This commit is contained in:
stax76
2025-11-20 00:56:03 +01:00
parent 8f38eba23e
commit 5f0fb4ebc3
6 changed files with 6 additions and 5 deletions

View File

@@ -28,7 +28,7 @@ public class Command
["playlist-random"] = args => PlaylistRandom(), // deprecated
};
string FormatTime(double value) => ((int)value).ToString("00");
static string FormatTime(double value) => ((int)value).ToString("00");
void PlayPause(IList<string> args)
{

View File

@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<AssemblyName>libmpvnet</AssemblyName>
<RootNamespace>MpvNet</RootNamespace>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>