Get-NAVAppManifest

Loads a manifest for an NAV App from an external source.

Syntax

Get-NAVAppManifest
   [-Path] <String>
   [<CommonParameters>]

Description

Use the Get-NAVAppManifest cmdlet to load a manifest from an NAV App from an external source, such as an .xml file.

Examples

Example 1

Get-NAVAppManifest -Path '.\Manifest-Proseware SmartApp.xml'

                    AppId              : 3c88160c-e0eb-4fe1-b4f6-011e45d74b10
                    AppName            : Proseware SmartApp
                    AppPublisher       : Proseware, Inc.
                    AppDescription     : First NAV App by Proseware
                    AppVersion         : 2.3.4.500
                    AppCompatibilityId : 2.0.0.0
                    AppPrivacyStatement: http://www.proseware.com/SmartApp/privacypolicy.aspx
                    AppEula            : http://www.proseware.com/SmartApp/ULA.aspx
                    AppHelp            : http://www.proseware.com/SmartApp/Support.aspx
                    AppUrl             : http://www.proseware.com/SmartApp/
                    AppLogo            :
                    AppScreenShots     : {}
                    Capabilities       : {}
                    Prerequisites      : {}
                    Dependencies       : {}

This example gets a NAV App manifest from an XML manifest file.

Example 2

Get-NAVAppManifest -Path '.\Manifest-Proseware SmartApp.xml' | New-NAVAppPackage -Path 'C:\Proseware SmartApp.navx' -SourcePath C:\NavAppFiles

This example gets a NAV App manifest from an XML manifest file and then passes the manifest to the New-NAVAppPackage cmdlet to create a new NAV App package.

Parameters

-Path

Specifies the path to a file with an NAV App manifest.

Type:String
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

Outputs

NavAppManifest