fix .net8 format

This commit is contained in:
Jonas Dellinger 2024-02-10 12:02:50 +01:00
parent 2bff224ef1
commit 70ef00a41e
4 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,8 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
#if NET8_0_OR_GREATER
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
#endif
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using SpotifyAPI.Web.Http; using SpotifyAPI.Web.Http;

View File

@ -1,6 +1,8 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
#if NET8_0_OR_GREATER
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
#endif
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using SpotifyAPI.Web.Http; using SpotifyAPI.Web.Http;

View File

@ -1,7 +1,8 @@
using System; using System;
using System.Globalization; using System.Globalization;
#if NET8_0_OR_GREATER
using System.Text; using System.Text;
#endif
namespace SpotifyAPI.Web namespace SpotifyAPI.Web
{ {

View File

@ -1,5 +1,7 @@
using System; using System;
#if NET8_0_OR_GREATER
using System.Diagnostics.CodeAnalysis; using System.Diagnostics.CodeAnalysis;
#endif
using System.Linq; using System.Linq;
using System.Reflection; using System.Reflection;