Skip to content

Commit

Permalink
some warning fixes idk
Browse files Browse the repository at this point in the history
  • Loading branch information
Morilli committed Feb 14, 2024
1 parent 3415c66 commit dd42fca
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/BizHawk.Client.Common/BizHawk.Client.Common.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks><!-- some NuGet packages aren't for Standard, and are only loaded at runtime because EmuHawk is still Framework. More work will be required to move to Core. -->
<TargetFrameworks>netstandard2.0;net8.0-windows</TargetFrameworks><!-- some NuGet packages aren't for Standard, and are only loaded at runtime because EmuHawk is still Framework. More work will be required to move to Core. -->
</PropertyGroup>
<Import Project="../MainSlnCommon.props" />
<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
using BizHawk.Client.Common;
using BizHawk.Common;
using BizHawk.Common.CollectionExtensions;
#if !NET6_0_OR_GREATER
using BizHawk.Common.StringExtensions;
#endif

namespace BizHawk.Client.EmuHawk
{
Expand Down
2 changes: 2 additions & 0 deletions src/BizHawk.Common/OSTailoredCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
using System.Diagnostics;
using System.Runtime.InteropServices;

#if !NET6_0_OR_GREATER
using BizHawk.Common.StringExtensions;
#endif

using static BizHawk.Common.LoaderApiImports;

Expand Down

0 comments on commit dd42fca

Please sign in to comment.