Updated target version to .NET 7 with latest major language version

This commit is contained in:
Eric Freed 2023-08-26 20:06:36 -04:00
parent d73bc2fbcf
commit 70a5dd2c62
2 changed files with 5 additions and 2 deletions

View File

@ -1,9 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<IsPackable>false</IsPackable>
<LangVersion>latestmajor</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>

View File

@ -2,7 +2,6 @@ using System;
using System.IO;
using System.IO.Compression;
using System.Reflection;
using SharpNBT.ZLib;
namespace SharpNBT.Tests
{