-
-
Notifications
You must be signed in to change notification settings - Fork 5
How To Download FSC NuGets
This tutorial will show you how to download D365FSC nuget packages.
- PowerShell 5.1
- fscps.tools module installed
Please visit the Install as a Administrator or the Install as a Administrator tutorials to learn how to install the tools.
Locate the PowerShell icon, if you don't have it on your desktop or in the task pane, we can locate it in the Windows Start Menu. Search for it or type PowerShell.

You need to import / load the fscps.tools module into the current PowerShell console. Type the following command:
Import-Module -Name fscps.tools

If you already know the exact NuGet version (e.g. 10.0.1777.99), you can download packages directly:
$DynamicsVersion = "10.0.39"
$PackagesDirectory = "C:\Temp\NuGets"
$versionData = Get-FSCPSVersionInfo -Version $DynamicsVersion
$PlatformVersion = $versionData.data.PlatformVersion
$ApplicationVersion = $versionData.data.AppVersion
Get-FSCPSNuget -Version $PlatformVersion -Type PlatformCompilerPackage -Path $PackagesDirectory -Force
Get-FSCPSNuget -Version $PlatformVersion -Type PlatformDevALM -Path $PackagesDirectory -Force
Get-FSCPSNuget -Version $ApplicationVersion -Type ApplicationDevALM -Path $PackagesDirectory -Force
Get-FSCPSNuget -Version $ApplicationVersion -Type ApplicationSuiteDevALM -Path $PackagesDirectory -Force
Get-ChildItem $PackagesDirectory

You can also use the short FNO version (e.g. 10.0.45) and let the cmdlet automatically resolve the correct NuGet version. Use the -KnownType parameter to choose between GA (General Availability) and Latest versions.
$DynamicsVersion = "10.0.45"
$PackagesDirectory = "C:\Temp\NuGets\$DynamicsVersion"
# Download all NuGet packages for the GA version
Get-FSCPSNuget -KnownVersion $DynamicsVersion -KnownType GA -Type PlatformCompilerPackage -Path $PackagesDirectory -Force
Get-FSCPSNuget -KnownVersion $DynamicsVersion -KnownType GA -Type PlatformDevALM -Path $PackagesDirectory -Force
Get-FSCPSNuget -KnownVersion $DynamicsVersion -KnownType GA -Type ApplicationDevALM -Path $PackagesDirectory -Force
Get-FSCPSNuget -KnownVersion $DynamicsVersion -KnownType GA -Type ApplicationSuiteDevALM -Path $PackagesDirectory -Force
Get-ChildItem $PackagesDirectory
To download the Latest available version instead of GA:
Get-FSCPSNuget -KnownVersion "10.0.45" -KnownType Latest -Type PlatformCompilerPackage -Path "C:\Temp\NuGets" -Force
Note: The
-KnownTypeparameter accepts two values:
GA— resolves to the General Availability (stable) NuGet versionLatest— resolves to the latest available NuGet version
In this tutorial we showed you how to download D365FSC nuget packages.
- Install as a non-Administrator
- Install as a Administrator
- Import fscps.tools module
- List available commands from fscps.tools module
- Get help content for a command
- Get D365FSC versions data
- Compile ISV model
- Invoke Choco
- Download FSC NuGets
- Download System Update Package
- Sign Files (DigiCert / Azure KeyVault)
- Work with Model Versions
- Work with ADO Test Cases