Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
khalid2831 committed Jan 16, 2020
2 parents 5ea316a + fb7fd35 commit 5e059ad
Show file tree
Hide file tree
Showing 9 changed files with 74 additions and 84 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@
<MenuItemName>ARBAOTBrowser</MenuItemName>
</MenuElement>
</AxMenuExtensionElement>
<AxMenuExtensionElement xmlns="">
<PositionType>Begin</PositionType>
<MenuElement xmlns=""
i:type="AxMenuElementSubMenu">
<Name>Workspaces</Name>
<Label>@SYS:Platform_Menu_ColHeading_Workspaces</Label>
<Elements>
<AxMenuElement xmlns=""
i:type="AxMenuElementTile">
<Name>ARBAOTBrowserTile</Name>
<Tile>ARBAOTBrowserTile</Tile>
</AxMenuElement>
</Elements>
</MenuElement>
</AxMenuExtensionElement>
</Elements>
<MenuElementModifications />
<PropertyModifications />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<AxMenuExtension xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="Microsoft.Dynamics.AX.Metadata.V1">
<Name>navpanemenu.AOTBrowser</Name>
<Customizations />
<Elements>
<AxMenuExtensionElement xmlns="">
<MenuElement xmlns=""
i:type="AxMenuElementSubMenu">
<Name>NavPaneMenuAOTBrowser</Name>
<Elements>
<AxMenuElement xmlns=""
i:type="AxMenuElementTile">
<Name>ARBAOTBrowserTile</Name>
<Tile>ARBAOTBrowserTile</Tile>
</AxMenuElement>
</Elements>
</MenuElement>
</AxMenuExtensionElement>
</Elements>
<MenuElementModifications />
<PropertyModifications />
</AxMenuExtension>
8 changes: 8 additions & 0 deletions Metadata/AOTBrowser/AOTBrowser/AxTile/ARBAOTBrowserTile.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<AxTile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="Microsoft.Dynamics.AX.Metadata.V1">
<Name>ARBAOTBrowserTile</Name>
<MenuItemName>ARBAOTBrowser</MenuItemName>
<NormalImage>DevelopmentAndTesting</NormalImage>
<Size>Wide</Size>
<TileDisplay>BackgroundImage</TileDisplay>
</AxTile>
2 changes: 1 addition & 1 deletion Metadata/AOTBrowser/Descriptor/AOTBrowser.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<AxModelInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<AppliedUpdates xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
<Customization>Allow</Customization>
<Description></Description>
<Description>A browser for the AOT rendered in the web UI.</Description>
<DisplayName>AOTBrowser</DisplayName>
<Id>925963610</Id>
<InternalsVisibleTo xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
Expand Down
11 changes: 11 additions & 0 deletions Projects/AOTBrowser/AOTBrowser/AOTBrowser.rnrproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
<Folder Include="Security Privileges\" />
<Folder Include="Security Roles\" />
<Folder Include="Tables\" />
<Folder Include="Tiles\" />
</ItemGroup>
<ItemGroup>
<Content Include="AOTBrowser.en-US.label.txt">
Expand Down Expand Up @@ -175,6 +176,11 @@
<Name>CommonMenu.AOTBrowser</Name>
<Link>Menu Extensions\CommonMenu.AOTBrowser</Link>
</Content>
<Content Include="AxMenuExtension\navpanemenu.AOTBrowser">
<SubType>Content</SubType>
<Name>navpanemenu.AOTBrowser</Name>
<Link>Menu Extensions\navpanemenu.AOTBrowser</Link>
</Content>
<Content Include="AxMenuItemAction\ARBAOTObjectPopulate">
<SubType>Content</SubType>
<Name>ARBAOTObjectPopulate</Name>
Expand Down Expand Up @@ -215,6 +221,11 @@
<Name>ARBAOTObjects</Name>
<Link>Tables\ARBAOTObjects</Link>
</Content>
<Content Include="AxTile\ARBAOTBrowserTile">
<SubType>Content</SubType>
<Name>ARBAOTBrowserTile</Name>
<Link>Tiles\ARBAOTBrowserTile</Link>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Arbela.Dynamics.AX.Xpp.Support\Arbela.Dynamics.AX.Xpp.Support.csproj">
Expand Down
19 changes: 0 additions & 19 deletions Projects/ARB_TestExtensions/ARB_TestExtensions.sln

This file was deleted.

This file was deleted.

20 changes: 17 additions & 3 deletions Scripts/Mount.ps1
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<#
.SYNOPSIS
Helps to mount GitHub repo to your machine
.DESCRIPTION
It creates a symbolic link into Metadata folder of Dynamics 365 for Operations.
.COMPANY
Arbela Technologies Corp.
#>


if (Test-Path -Path K:\AosService)
{
$LocalDeploymentFolder = "K:\AosService"
Expand All @@ -16,10 +26,13 @@ else
}
Write-Host "using $LocalDeploymentFolder as the deployment folder"

$LocalPackagesFolder = Join-Path $LocalDeploymentFolder "PackagesLocalDirectory"
$LocalMetadataFolder = Join-Path -Path $LocalDeploymentFolder -ChildPath "\PackagesLocalDirectory"

Write-Host "using $LocalMetadataFolder as the metadata folder"

# Get the list of models to junction
$ModelsToJunction = Get-ChildItem "..\Metadata\"
$ModelsToJunction = Get-ChildItem "..\Metadata"

Write-Host "Enabling editing of the following models:" $ModelsToJunction

foreach ($Model in $ModelsToJunction)
Expand Down Expand Up @@ -50,4 +63,5 @@ foreach ($Model in $ModelsToJunction)
New-Item -ItemType:SymbolicLink -Path:$LocalSubfolderPath -Value:$RepoSubfolderPath
}
}
}
}
pause
Binary file added Scripts/Mount.ps1 - Run as admin.lnk
Binary file not shown.

0 comments on commit 5e059ad

Please sign in to comment.