move to net10

This commit is contained in:
BlubbFish 2026-08-03 22:56:10 +02:00
parent d6b6a365c7
commit 63561dc90d
3 changed files with 17 additions and 2 deletions

View File

@ -5,4 +5,18 @@
using System.Diagnostics.CodeAnalysis;
[assembly: SuppressMessage("Style", "IDE0038:Musterabgleich verwenden", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonMapper.WriteValue(System.Object,LitJson.JsonWriter,System.Boolean,System.Int32)")]
[assembly: SuppressMessage("Style", "IDE0038:Musterabgleich verwenden", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.#ctor(System.Object)")]
[assembly: SuppressMessage("Style", "IDE0046:In bedingten Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.op_Explicit(LitJson.JsonData)~System.Boolean")]
[assembly: SuppressMessage("Style", "IDE0046:In bedingten Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.op_Explicit(LitJson.JsonData)~System.Double")]
[assembly: SuppressMessage("Style", "IDE0046:In bedingten Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.op_Explicit(LitJson.JsonData)~System.Int32")]
[assembly: SuppressMessage("Style", "IDE0046:In bedingten Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.op_Explicit(LitJson.JsonData)~System.Int64")]
[assembly: SuppressMessage("Style", "IDE0046:In bedingten Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.op_Explicit(LitJson.JsonData)~System.String")]
[assembly: SuppressMessage("Style", "IDE0046:In bedingten Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.LitJson#IJsonWrapper#GetBoolean~System.Boolean")]
[assembly: SuppressMessage("Style", "IDE0046:In bedingten Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.LitJson#IJsonWrapper#GetDouble~System.Double")]
[assembly: SuppressMessage("Style", "IDE0046:In bedingten Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.LitJson#IJsonWrapper#GetInt~System.Int32")]
[assembly: SuppressMessage("Style", "IDE0046:In bedingten Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.LitJson#IJsonWrapper#GetLong~System.Int64")]
[assembly: SuppressMessage("Style", "IDE0046:In bedingten Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.LitJson#IJsonWrapper#GetString~System.String")]
[assembly: SuppressMessage("Style", "IDE0046:In bedingten Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.EnsureCollection~System.Collections.ICollection")]
[assembly: SuppressMessage("Style", "IDE0038:Musterabgleich verwenden", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.ToJsonData(System.Object)~LitJson.JsonData")]
[assembly: SuppressMessage("Style", "IDE0066:Switch-Anweisung in Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.Equals(LitJson.JsonData)~System.Boolean")]
[assembly: SuppressMessage("Style", "IDE0066:Switch-Anweisung in Ausdruck konvertieren", Justification = "<Ausstehend>", Scope = "member", Target = "~M:LitJson.JsonData.ToString~System.String")]

View File

@ -793,5 +793,6 @@ namespace LitJson {
public static void UnregisterExporters() => custom_exporters_table.Clear();
public static void UnregisterImporters() => custom_importers_table.Clear();
public static Object ToObject() => throw new NotImplementedException();
}
}

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<AssemblyName>LitJson</AssemblyName>
<RootNamespace>litjson</RootNamespace>
<PackageId>LitJson</PackageId>