-
-
Notifications
You must be signed in to change notification settings - Fork 5
How To Compile ISV model
onikolaiev edited this page May 27, 2024
·
2 revisions
This tutorial will show you how to compile a D365FSC module and generate the package.
- 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

$settingsFile = @"
{
"type":"FSCM",
"packageName": "ContosoExtension",
"buildVersion": "10.0.39"
}
"@
Set-FSCPSSettings -SettingsJsonString $settingsFile
Invoke-FSCPSCompile -SourcesPath "C:\Users\Admindc78f9f766\Desktop\ContosoExt-main\PackagesLocalDirectory"

In this tutorial we showed you how to compile a D365FSC module and generate the package. Note: Please refer to this description to learn more about the settings file and how you can modify default behaviors.
- 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