public void CheckThatAssemblyAreDefined()
    {
        m_assemblyRuntime.m_packageName = this.m_projectAlphNumId;
        m_assemblyRuntime.SetNameSpace(this.GetProjectNamespaceId());
        m_assemblyRuntime.m_assemblyType = AssemblyBuildInformation.AssemblyType.Unity;

        m_assemblyEditor.m_packageName = this.m_projectAlphNumId + "Editor";
        m_assemblyEditor.SetNameSpace(this.GetProjectNamespaceId() + "Editor");
        m_assemblyEditor.m_assemblyType = AssemblyBuildInformation.AssemblyType.Editor;
        CheckThatRuntimeIsInEditor(m_assemblyRuntime, m_assemblyEditor);
    }