7.3, Workspaces and .xfproj file
Has anyone worked yet with workspaces (loading/ extracting) using a .xfproj file? I am trying to moved a dashboard maintenance unit (DMU) out of the default workspace into a new one. However, when I export my .xfproj file (pre-7.3), remove the DMU from default, and load the .xfproj file back in I do not see it loading to the new workspace I created. Is there something in the .xfproj file that needs added to accumadate workpsaces in 7.3?
Examples of using Workspace with an .XFProj file
Everything in a Workspace
<projectItem projectItemType="DashboardWorkspace" folderPath="" workspace="WORKSPACENAME" includeDescendants="true" />
Everything in a DMU in a Workspace
<projectItem projectItemType="DashboardMaintenanceUnit" folderPath="" workspace="WORKSPACENAME" name="DASHBOARDMAINTENANCEUNITNAME" includeDescendants="true" />
Everything in the Default Workspace
<projectItem projectItemType="DashboardWorkspace" folderPath="" workspace="" name="" includeDescendants="true" />
Everything in the Default Workspace with the DMU specified
<projectItem projectItemType="DashboardMaintenanceUnit" folderPath="" workspace="" name="DASHBOARDMAINTENANCEUNITNAME" includeDescendants="true" />