Skip to content

Commit b6d3389

Browse files
authored
Merge pull request #256 from delegateas/252_ignoreSpecialFormtypes
Resolve #252.
2 parents 0a77bfe + 7aac2af commit b6d3389

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/XrmDefinitelyTyped/Generation/FileGeneration.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ let generateFormDefs state crmVersion generateMappings =
272272
if i = 0 then form
273273
else { form with name = sprintf "%s%i" form.name i }))
274274
|> Array.concat
275-
|> Array.filter (fun (form: XrmForm) -> form.formType.IsNone || (form.formType.IsSome && form.formType.Value <> "Card"))
275+
|> Array.filter (fun (form: XrmForm) -> form.formType.IsNone || (form.formType.IsSome && form.formType.Value <> "Card" && form.formType.Value <> "InteractionCentricDashboard" && form.formType.Value <> "TaskFlowForm"))
276276
|> Array.Parallel.map (fun xrmForm ->
277277
let path = sprintf "%s/Form/%s%s" state.outputDir xrmForm.entityName (getFormType xrmForm)
278278
let lines = getFormDts xrmForm crmVersion generateMappings

0 commit comments

Comments
 (0)