You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will get the version information of MyCustomModel including layer name
37
+
38
+
## PARAMETERS
39
+
40
+
### -ModelPath
41
+
Path to the model folder (automatically searches for Descriptor\*.xml inside)
42
+
43
+
```yaml
44
+
Type: String
45
+
Parameter Sets: (All)
46
+
Aliases:
47
+
48
+
Required: True
49
+
Position: 1
50
+
Default value: None
51
+
Accept pipeline input: False
52
+
Accept wildcard characters: False
53
+
```
54
+
55
+
### -ProgressAction
56
+
{{ Fill ProgressAction Description }}
57
+
58
+
```yaml
59
+
Type: ActionPreference
60
+
Parameter Sets: (All)
61
+
Aliases: proga
62
+
63
+
Required: False
64
+
Position: Named
65
+
Default value: None
66
+
Accept pipeline input: False
67
+
Accept wildcard characters: False
68
+
```
69
+
70
+
### CommonParameters
71
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
Copy file name to clipboardExpand all lines: fscps.tools/internal/configurations/configuration.ps1
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,9 @@ Set-PSFConfig -FullName 'fscps.tools.settings.all.artifactsFolderName' -Value 'a
91
91
Set-PSFConfig-FullName 'fscps.tools.settings.all.generatePackages'-Value $true-Initialize -Description 'Option to enable a packages generation functionality. Default / TRUE'
92
92
Set-PSFConfig-FullName 'fscps.tools.settings.all.createRegularPackage'-Value $true-Initialize -Description 'Option to generate an LCS Deployable Package after build. The "generatePackages" option should be enabled. Default / TRUE'
93
93
Set-PSFConfig-FullName 'fscps.tools.settings.all.createCloudPackage'-Value $false-Initialize -Description 'Option to generate a Power Platform Unified Package after build. The "generatePackages" option should be enabled. Default / FALSE'
94
-
Set-PSFConfig-FullName 'fscps.tools.settings.all.namingStrategy'-Value 'Default'-Initialize -Description 'The package naming strategy. Custom value means the result package will have the name specified in the packageName variable. Default / Custom'
94
+
Set-PSFConfig-FullName 'fscps.tools.settings.all.namingStrategy'-Value 'Default'-Initialize -Description 'The package naming strategy. Custom value means the result package will have the name specified in the packageName variable. Default / Custom / ModelVersion'
95
+
Set-PSFConfig-FullName 'fscps.tools.settings.all.versionSourceModelName'-Value ''-Initialize -Description 'The model name to be used for naming the package. This model will be used to receive the metadata number.'
0 commit comments