diff --git a/OpenRA.Game/OpenRA.Game.csproj b/OpenRA.Game/OpenRA.Game.csproj
index 810cd2d88d..a32c50975a 100644
--- a/OpenRA.Game/OpenRA.Game.csproj
+++ b/OpenRA.Game/OpenRA.Game.csproj
@@ -278,7 +278,6 @@
-
diff --git a/OpenRA.Game/FileFormats/IniFile.cs b/OpenRA.Mods.Common/FileFormats/IniFile.cs
similarity index 98%
rename from OpenRA.Game/FileFormats/IniFile.cs
rename to OpenRA.Mods.Common/FileFormats/IniFile.cs
index 3be88101c1..c914d0bb1e 100644
--- a/OpenRA.Game/FileFormats/IniFile.cs
+++ b/OpenRA.Mods.Common/FileFormats/IniFile.cs
@@ -14,7 +14,7 @@ using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
-namespace OpenRA.FileFormats
+namespace OpenRA.Mods.Common.FileFormats
{
public class IniFile
{
diff --git a/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj b/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj
index 5512e774ef..28f9e444aa 100644
--- a/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj
+++ b/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj
@@ -723,6 +723,7 @@
+
diff --git a/OpenRA.Mods.Common/UtilityCommands/LegacyMapImporter.cs b/OpenRA.Mods.Common/UtilityCommands/LegacyMapImporter.cs
index 6b12e6dc59..c72209eb13 100644
--- a/OpenRA.Mods.Common/UtilityCommands/LegacyMapImporter.cs
+++ b/OpenRA.Mods.Common/UtilityCommands/LegacyMapImporter.cs
@@ -13,7 +13,6 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
-using OpenRA.FileFormats;
using OpenRA.Graphics;
using OpenRA.Mods.Common.FileFormats;
using OpenRA.Mods.Common.Traits;
diff --git a/OpenRA.Mods.TS/UtilityCommands/LegacyTilesetImporter.cs b/OpenRA.Mods.TS/UtilityCommands/LegacyTilesetImporter.cs
index de4722fc82..0c0243dc20 100644
--- a/OpenRA.Mods.TS/UtilityCommands/LegacyTilesetImporter.cs
+++ b/OpenRA.Mods.TS/UtilityCommands/LegacyTilesetImporter.cs
@@ -11,7 +11,7 @@
using System;
using System.Collections.Generic;
using System.IO;
-using OpenRA.FileFormats;
+using OpenRA.Mods.Common.FileFormats;
namespace OpenRA.Mods.TS.UtilityCommands
{