-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathappSettings.json
44 lines (34 loc) · 1.34 KB
/
appSettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// This settings file will handle any default flags to pass to the application
// Mandatory parameters that are not set in this settings file will need to be passed via the command-line arguments
{
// Kontent.ai Delivery SDK Options
"DeliveryOptions": {
// Kontent.ai Project ID
"ProjectId": null
},
// Kontent.ai Management SDK Options
"ManagementOptions": {
// Kontent.ai Project ID
"ProjectId": null,
// Kontent.ai Project API key
"ApiKey": null
},
// Indicates whether the extended Delivery models should be generated
"ExtendedDeliveryModels": false,
// Namespace name of the generated classes
"Namespace": null,
// Output directory for the generated files
"OutputDir": "./output",
// Optionally add suffix to the generated files
"FileNameSuffix": null,
// Optionally add suffix to the generated files
"GeneratePartials": false,
// Indicates whether the CustomTypeProvider class should be generated
"WithTypeProvider": true,
// Indicates whether the classes should be generated with types that represent structured data model
"StructuredModel": null,
//Indicates whether the classes should be generated for Management API SDK
"ManagementApi": false,
// Indicates whether a base class should be created and all output classes should derive from it using a partial class
"BaseClass": null
}