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 Nov 3, 2023
1 parent 5df2c1f commit f2ed1f9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
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;net6.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;net6.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
2 changes: 0 additions & 2 deletions src/BizHawk.Client.EmuHawk/UpdateChecker.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using System;
using System.IO;
using System.Net;
using System.Threading;

using BizHawk.Client.Common;
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 @@ -6,7 +6,9 @@
using System.Diagnostics;
using System.Runtime.InteropServices;

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

#if EXE_PROJECT
namespace EXE_PROJECT // Use a different namespace so the executable can still use this class' members without an implicit dependency on the BizHawk.Common library, and without resorting to code duplication.
Expand Down

0 comments on commit f2ed1f9

Please sign in to comment.