Skip to content

Commit 63065f1

Browse files
committed
Merge branch 'gh_master' of https://github.com/delegateas/XrmDefinitelyTyped into gh_master
2 parents 1c8c5ba + b6d3389 commit 63065f1

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)