diff --git a/source/MonoGame.Extended.Content.Pipeline/BitmapFonts/BitmapFontWriter.cs b/source/MonoGame.Extended.Content.Pipeline/BitmapFonts/BitmapFontWriter.cs index c52c6a139..d02f841b6 100644 --- a/source/MonoGame.Extended.Content.Pipeline/BitmapFonts/BitmapFontWriter.cs +++ b/source/MonoGame.Extended.Content.Pipeline/BitmapFonts/BitmapFontWriter.cs @@ -1,5 +1,6 @@ using Microsoft.Xna.Framework.Content.Pipeline; using Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler; +using MonoGame.Extended.BitmapFonts; namespace MonoGame.Extended.Content.Pipeline.BitmapFonts { @@ -43,20 +44,12 @@ protected override void Write(ContentWriter writer, BitmapFontProcessorResult re public override string GetRuntimeType(TargetPlatform targetPlatform) { -#if KNI - return "MonoGame.Extended.BitmapFonts.BitmapFont, KNI.Extended"; -#else - return "MonoGame.Extended.BitmapFonts.BitmapFont, MonoGame.Extended"; -#endif + return typeof(BitmapFont).AssemblyQualifiedName; } public override string GetRuntimeReader(TargetPlatform targetPlatform) { -#if KNI - return "MonoGame.Extended.BitmapFonts.BitmapFontReader, KNI.Extended"; -#else - return "MonoGame.Extended.BitmapFonts.BitmapFontReader, MonoGame.Extended"; -#endif + return typeof(BitmapFontReader).AssemblyQualifiedName; } } } diff --git a/source/MonoGame.Extended.Content.Pipeline/TextureAtlases/TexturePackerWriter.cs b/source/MonoGame.Extended.Content.Pipeline/TextureAtlases/TexturePackerWriter.cs index 49ffa53ab..735d817b3 100644 --- a/source/MonoGame.Extended.Content.Pipeline/TextureAtlases/TexturePackerWriter.cs +++ b/source/MonoGame.Extended.Content.Pipeline/TextureAtlases/TexturePackerWriter.cs @@ -2,6 +2,7 @@ using System.IO; using Microsoft.Xna.Framework.Content.Pipeline; using Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler; +using MonoGame.Extended.Graphics; namespace MonoGame.Extended.Content.Pipeline.TextureAtlases { @@ -34,20 +35,12 @@ protected override void Write(ContentWriter writer, TexturePackerProcessorResult public override string GetRuntimeType(TargetPlatform targetPlatform) { -#if KNI - return "MonoGame.Extended.Graphics.Texture2DAtlas, KNI.Extended"; -#else - return "MonoGame.Extended.Graphics.Texture2DAtlas, MonoGame.Extended"; -#endif + return typeof(Texture2DAtlas).AssemblyQualifiedName; } public override string GetRuntimeReader(TargetPlatform targetPlatform) { -#if KNI - return "MonoGame.Extended.Content.ContentReaders.Texture2DAtlasReader, KNI.Extended"; -#else - return "MonoGame.Extended.Content.ContentReaders.Texture2DAtlasReader, MonoGame.Extended"; -#endif + return typeof(ContentReaders.Texture2DAtlasReader).AssemblyQualifiedName; } } } diff --git a/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTilesetWriter.cs b/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTilesetWriter.cs index f879f16d5..0a91923f0 100644 --- a/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTilesetWriter.cs +++ b/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTilesetWriter.cs @@ -13,20 +13,12 @@ public class TiledMapTilesetWriter : ContentTypeWriter