-
-
Notifications
You must be signed in to change notification settings - Fork 4
Get FSCPSNuget
Get the D365FSC NuGet package
Get-FSCPSNuget [-Version] <String> [-Type] <NuGetType> [[-Path] <String>] [-Force]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
Get the D365FSC NuGet package from storage account
Full list of NuGet: https://lcs.dynamics.com/V2/SharedAssetLibrary and select NuGet packages
Get-FSCPSNuget -Version "10.0.1777.99" -Type PlatformCompilerPackage
This will download the NuGet package with version "10.0.1777.99" and type "PlatformCompilerPackage" to the current folder
Get-FSCPSNuget -Version "10.0.1777.99" -Type PlatformCompilerPackage -Path "c:\temp"
This will download the NuGet package with version "10.0.1777.99" and type "PlatformCompilerPackage" to the c:\temp folder
Get-FSCPSNuget -Version "10.0.1777.99" -Type PlatformCompilerPackage -Path "c:\temp" -Force
This will download the NuGet package with version "10.0.1777.99" and type "PlatformCompilerPackage" to the c:\temp folder and override if the package with the same name exists.
The version of the NuGet package to download
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The type of the NuGet package to download
Type: NuGetType
Parameter Sets: (All)
Aliases:
Accepted values: ApplicationSuiteDevALM, ApplicationDevALM, PlatformDevALM, PlatformCompilerPackage
Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The destination folder of the NuGet package to download
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Instruct the cmdlet to override the package if exists
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
{{ Fill ProgressAction Description }}
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Author: Oleksandr Nikolaiev (@onikolaiev)