Reorganized BAL support into separate namespace

This commit is contained in:
Michael Becker 2015-04-29 11:41:08 -04:00
parent 2e8becd39d
commit 51e0957cca
5 changed files with 8 additions and 7 deletions

View File

@ -13,7 +13,7 @@
<ObjectModel TypeName="UniversalEditor.ObjectModels.FileSystem.FileSystemObjectModel" />
</ObjectModels>
<DataFormats>
<DataFormat TypeName="UniversalEditor.DataFormats.FileSystem.KnowledgeAdventure.BALDataFormat" />
<DataFormat TypeName="UniversalEditor.DataFormats.FileSystem.KnowledgeAdventure.BAL.BALDataFormat" />
</DataFormats>
</Association>
</Associations>

View File

@ -4,7 +4,7 @@ using System.Text;
using UniversalEditor.IO;
using UniversalEditor.ObjectModels.FileSystem;
namespace UniversalEditor.DataFormats.FileSystem.KnowledgeAdventure
namespace UniversalEditor.DataFormats.FileSystem.KnowledgeAdventure.BAL
{
public class BALDataFormat : DataFormat
{

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UniversalEditor.DataFormats.FileSystem.KnowledgeAdventure
namespace UniversalEditor.DataFormats.FileSystem.KnowledgeAdventure.BAL
{
public class BALDirectoryEntry
{

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UniversalEditor.DataFormats.FileSystem.KnowledgeAdventure
namespace UniversalEditor.DataFormats.FileSystem.KnowledgeAdventure.BAL
{
public enum BALDirectoryEntryAttributes
{

View File

@ -35,9 +35,10 @@
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="DataFormats\FileSystem\KnowledgeAdventure\BALDataFormat.cs" />
<Compile Include="DataFormats\FileSystem\KnowledgeAdventure\BALDirectoryEntry.cs" />
<Compile Include="DataFormats\FileSystem\KnowledgeAdventure\BALDirectoryEntryAttributes.cs" />
<Compile Include="DataFormats\FileSystem\KnowledgeAdventure\BAL\BALDataFormat.cs" />
<Compile Include="DataFormats\FileSystem\KnowledgeAdventure\BAL\BALDirectoryEntry.cs" />
<Compile Include="DataFormats\FileSystem\KnowledgeAdventure\BAL\BALDirectoryEntryAttributes.cs" />
<Compile Include="DataFormats\FileSystem\KnowledgeAdventure\RSC\RSCDataFormat.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>