diff --git a/BizHawk.Common/BizHawk.Common.csproj b/BizHawk.Common/BizHawk.Common.csproj
index d7027e8448..2c22064973 100644
--- a/BizHawk.Common/BizHawk.Common.csproj
+++ b/BizHawk.Common/BizHawk.Common.csproj
@@ -35,10 +35,6 @@
true
-
- False
- ..\References\Newtonsoft.Json.dll
-
@@ -71,7 +67,6 @@
-
diff --git a/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj b/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj
index 9d8b33a4e7..f4d05929e4 100644
--- a/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj
+++ b/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj
@@ -33,6 +33,10 @@
true
+
+ False
+ ..\References\Newtonsoft.Json.dll
+
@@ -78,6 +82,7 @@
+
diff --git a/BizHawk.Common/TextState.cs b/BizHawk.Emulation.Common/TextState.cs
similarity index 94%
rename from BizHawk.Common/TextState.cs
rename to BizHawk.Emulation.Common/TextState.cs
index d40823573b..e1b76d677c 100644
--- a/BizHawk.Common/TextState.cs
+++ b/BizHawk.Emulation.Common/TextState.cs
@@ -5,7 +5,7 @@ using System.Text;
using System.Runtime.InteropServices;
using Newtonsoft.Json;
-namespace BizHawk.Common
+namespace BizHawk.Emulation.Common
{
// managed counterpart to unmanaged serialization code in GB and WSWAN cores
diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/LibGambatte.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/LibGambatte.cs
index b30c08af6a..da18f72a49 100644
--- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/LibGambatte.cs
+++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/LibGambatte.cs
@@ -1,6 +1,6 @@
using System;
using System.Runtime.InteropServices;
-using BizHawk.Common;
+using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
{
diff --git a/BizHawk.Emulation.Cores/Consoles/WonderSwan/BizSwan.cs b/BizHawk.Emulation.Cores/Consoles/WonderSwan/BizSwan.cs
index dd857c9f06..e1c30b106b 100644
--- a/BizHawk.Emulation.Cores/Consoles/WonderSwan/BizSwan.cs
+++ b/BizHawk.Emulation.Cores/Consoles/WonderSwan/BizSwan.cs
@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
-using BizHawk.Common;
+using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.WonderSwan
{