create-powerapps-project 0.28.0 → 0.28.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-powerapps-project",
3
3
  "description": "💧 plop generator for Dataverse development",
4
- "version": "0.28.0",
4
+ "version": "0.28.1",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",
7
7
  "bin": {
@@ -28,5 +28,8 @@
28
28
  "devDependencies": {
29
29
  "@types/minimist": "^1.2.2",
30
30
  "@types/node": "^14.14.21"
31
+ },
32
+ "volta": {
33
+ "extends": "../../package.json"
31
34
  }
32
35
  }
@@ -1,132 +1,132 @@
1
- ###############################
2
- # Core EditorConfig Options #
3
- ###############################
4
- root = true
5
- # All files
6
- [*]
7
- indent_style = space
8
-
9
- # XML project files
10
- [*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
11
- indent_size = 2
12
-
13
- # XML config files
14
- [*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
15
- indent_size = 2
16
-
17
- # Code files
18
- [*.{cs,csx,vb,vbx}]
19
- indent_size = 4
20
- insert_final_newline = true
21
- charset = utf-8-bom
22
- ###############################
23
- # .NET Coding Conventions #
24
- ###############################
25
- [*.{cs,vb}]
26
- # Organize usings
27
- dotnet_sort_system_directives_first = true
28
- # this. preferences
29
- dotnet_style_qualification_for_field = false:silent
30
- dotnet_style_qualification_for_property = false:silent
31
- dotnet_style_qualification_for_method = false:silent
32
- dotnet_style_qualification_for_event = false:silent
33
- # Language keywords vs BCL types preferences
34
- dotnet_style_predefined_type_for_locals_parameters_members = true:silent
35
- dotnet_style_predefined_type_for_member_access = true:silent
36
- # Parentheses preferences
37
- dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent
38
- dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent
39
- dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent
40
- dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent
41
- # Modifier preferences
42
- dotnet_style_require_accessibility_modifiers = for_non_interface_members:silent
43
- dotnet_style_readonly_field = true:suggestion
44
- # Expression-level preferences
45
- dotnet_style_object_initializer = true:suggestion
46
- dotnet_style_collection_initializer = true:suggestion
47
- dotnet_style_explicit_tuple_names = true:suggestion
48
- dotnet_style_null_propagation = true:suggestion
49
- dotnet_style_coalesce_expression = true:suggestion
50
- dotnet_style_prefer_is_null_check_over_reference_equality_method = true:silent
51
- dotnet_style_prefer_inferred_tuple_names = true:suggestion
52
- dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
53
- dotnet_style_prefer_auto_properties = true:silent
54
- dotnet_style_prefer_conditional_expression_over_assignment = true:silent
55
- dotnet_style_prefer_conditional_expression_over_return = true:silent
56
- ###############################
57
- # Naming Conventions #
58
- ###############################
59
- # Style Definitions
60
- dotnet_naming_style.pascal_case_style.capitalization = pascal_case
61
- # Use PascalCase for constant fields
62
- dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion
63
- dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
64
- dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
65
- dotnet_naming_symbols.constant_fields.applicable_kinds = field
66
- dotnet_naming_symbols.constant_fields.applicable_accessibilities = *
67
- dotnet_naming_symbols.constant_fields.required_modifiers = const
68
- ###############################
69
- # C# Coding Conventions #
70
- ###############################
71
- [*.cs]
72
- # var preferences
73
- csharp_style_var_for_built_in_types = true:suggestion
74
- csharp_style_var_when_type_is_apparent = true:suggestion
75
- csharp_style_var_elsewhere = true:silent
76
- # Expression-bodied members
77
- csharp_style_expression_bodied_methods = false:silent
78
- csharp_style_expression_bodied_constructors = false:silent
79
- csharp_style_expression_bodied_operators = false:silent
80
- csharp_style_expression_bodied_properties = true:silent
81
- csharp_style_expression_bodied_indexers = true:silent
82
- csharp_style_expression_bodied_accessors = true:silent
83
- # Pattern matching preferences
84
- csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
85
- csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
86
- # Null-checking preferences
87
- csharp_style_throw_expression = true:suggestion
88
- csharp_style_conditional_delegate_call = true:suggestion
89
- # Modifier preferences
90
- csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion
91
- # Expression-level preferences
92
- csharp_prefer_braces = true:silent
93
- csharp_style_deconstructed_variable_declaration = true:suggestion
94
- csharp_prefer_simple_default_expression = true:suggestion
95
- csharp_style_pattern_local_over_anonymous_function = true:suggestion
96
- csharp_style_inlined_variable_declaration = true:suggestion
97
- ###############################
98
- # C# Formatting Rules #
99
- ###############################
100
- # New line preferences
101
- csharp_new_line_before_open_brace = all
102
- csharp_new_line_before_else = true
103
- csharp_new_line_before_catch = true
104
- csharp_new_line_before_finally = true
105
- csharp_new_line_before_members_in_object_initializers = true
106
- csharp_new_line_before_members_in_anonymous_types = true
107
- csharp_new_line_between_query_expression_clauses = true
108
- # Indentation preferences
109
- csharp_indent_case_contents = true
110
- csharp_indent_switch_labels = true
111
- csharp_indent_labels = flush_left
112
- # Space preferences
113
- csharp_space_after_cast = false
114
- csharp_space_after_keywords_in_control_flow_statements = true
115
- csharp_space_between_method_call_parameter_list_parentheses = false
116
- csharp_space_between_method_declaration_parameter_list_parentheses = false
117
- csharp_space_between_parentheses = false
118
- csharp_space_before_colon_in_inheritance_clause = true
119
- csharp_space_after_colon_in_inheritance_clause = true
120
- csharp_space_around_binary_operators = before_and_after
121
- csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
122
- csharp_space_between_method_call_name_and_opening_parenthesis = false
123
- csharp_space_between_method_call_empty_parameter_list_parentheses = false
124
- # Wrapping preferences
125
- csharp_preserve_single_line_statements = true
126
- csharp_preserve_single_line_blocks = true
127
- ###############################
128
- # VB Coding Conventions #
129
- ###############################
130
- [*.vb]
131
- # Modifier preferences
1
+ ###############################
2
+ # Core EditorConfig Options #
3
+ ###############################
4
+ root = true
5
+ # All files
6
+ [*]
7
+ indent_style = space
8
+
9
+ # XML project files
10
+ [*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
11
+ indent_size = 2
12
+
13
+ # XML config files
14
+ [*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
15
+ indent_size = 2
16
+
17
+ # Code files
18
+ [*.{cs,csx,vb,vbx}]
19
+ indent_size = 4
20
+ insert_final_newline = true
21
+ charset = utf-8-bom
22
+ ###############################
23
+ # .NET Coding Conventions #
24
+ ###############################
25
+ [*.{cs,vb}]
26
+ # Organize usings
27
+ dotnet_sort_system_directives_first = true
28
+ # this. preferences
29
+ dotnet_style_qualification_for_field = false:silent
30
+ dotnet_style_qualification_for_property = false:silent
31
+ dotnet_style_qualification_for_method = false:silent
32
+ dotnet_style_qualification_for_event = false:silent
33
+ # Language keywords vs BCL types preferences
34
+ dotnet_style_predefined_type_for_locals_parameters_members = true:silent
35
+ dotnet_style_predefined_type_for_member_access = true:silent
36
+ # Parentheses preferences
37
+ dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent
38
+ dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent
39
+ dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent
40
+ dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent
41
+ # Modifier preferences
42
+ dotnet_style_require_accessibility_modifiers = for_non_interface_members:silent
43
+ dotnet_style_readonly_field = true:suggestion
44
+ # Expression-level preferences
45
+ dotnet_style_object_initializer = true:suggestion
46
+ dotnet_style_collection_initializer = true:suggestion
47
+ dotnet_style_explicit_tuple_names = true:suggestion
48
+ dotnet_style_null_propagation = true:suggestion
49
+ dotnet_style_coalesce_expression = true:suggestion
50
+ dotnet_style_prefer_is_null_check_over_reference_equality_method = true:silent
51
+ dotnet_style_prefer_inferred_tuple_names = true:suggestion
52
+ dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
53
+ dotnet_style_prefer_auto_properties = true:silent
54
+ dotnet_style_prefer_conditional_expression_over_assignment = true:silent
55
+ dotnet_style_prefer_conditional_expression_over_return = true:silent
56
+ ###############################
57
+ # Naming Conventions #
58
+ ###############################
59
+ # Style Definitions
60
+ dotnet_naming_style.pascal_case_style.capitalization = pascal_case
61
+ # Use PascalCase for constant fields
62
+ dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion
63
+ dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
64
+ dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
65
+ dotnet_naming_symbols.constant_fields.applicable_kinds = field
66
+ dotnet_naming_symbols.constant_fields.applicable_accessibilities = *
67
+ dotnet_naming_symbols.constant_fields.required_modifiers = const
68
+ ###############################
69
+ # C# Coding Conventions #
70
+ ###############################
71
+ [*.cs]
72
+ # var preferences
73
+ csharp_style_var_for_built_in_types = true:suggestion
74
+ csharp_style_var_when_type_is_apparent = true:suggestion
75
+ csharp_style_var_elsewhere = true:silent
76
+ # Expression-bodied members
77
+ csharp_style_expression_bodied_methods = false:silent
78
+ csharp_style_expression_bodied_constructors = false:silent
79
+ csharp_style_expression_bodied_operators = false:silent
80
+ csharp_style_expression_bodied_properties = true:silent
81
+ csharp_style_expression_bodied_indexers = true:silent
82
+ csharp_style_expression_bodied_accessors = true:silent
83
+ # Pattern matching preferences
84
+ csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
85
+ csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
86
+ # Null-checking preferences
87
+ csharp_style_throw_expression = true:suggestion
88
+ csharp_style_conditional_delegate_call = true:suggestion
89
+ # Modifier preferences
90
+ csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion
91
+ # Expression-level preferences
92
+ csharp_prefer_braces = true:silent
93
+ csharp_style_deconstructed_variable_declaration = true:suggestion
94
+ csharp_prefer_simple_default_expression = true:suggestion
95
+ csharp_style_pattern_local_over_anonymous_function = true:suggestion
96
+ csharp_style_inlined_variable_declaration = true:suggestion
97
+ ###############################
98
+ # C# Formatting Rules #
99
+ ###############################
100
+ # New line preferences
101
+ csharp_new_line_before_open_brace = all
102
+ csharp_new_line_before_else = true
103
+ csharp_new_line_before_catch = true
104
+ csharp_new_line_before_finally = true
105
+ csharp_new_line_before_members_in_object_initializers = true
106
+ csharp_new_line_before_members_in_anonymous_types = true
107
+ csharp_new_line_between_query_expression_clauses = true
108
+ # Indentation preferences
109
+ csharp_indent_case_contents = true
110
+ csharp_indent_switch_labels = true
111
+ csharp_indent_labels = flush_left
112
+ # Space preferences
113
+ csharp_space_after_cast = false
114
+ csharp_space_after_keywords_in_control_flow_statements = true
115
+ csharp_space_between_method_call_parameter_list_parentheses = false
116
+ csharp_space_between_method_declaration_parameter_list_parentheses = false
117
+ csharp_space_between_parentheses = false
118
+ csharp_space_before_colon_in_inheritance_clause = true
119
+ csharp_space_after_colon_in_inheritance_clause = true
120
+ csharp_space_around_binary_operators = before_and_after
121
+ csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
122
+ csharp_space_between_method_call_name_and_opening_parenthesis = false
123
+ csharp_space_between_method_call_empty_parameter_list_parentheses = false
124
+ # Wrapping preferences
125
+ csharp_preserve_single_line_statements = true
126
+ csharp_preserve_single_line_blocks = true
127
+ ###############################
128
+ # VB Coding Conventions #
129
+ ###############################
130
+ [*.vb]
131
+ # Modifier preferences
132
132
  visual_basic_preferred_modifier_order = Partial,Default,Private,Protected,Public,Friend,NotOverridable,Overridable,MustOverride,Overloads,Overrides,MustInherit,NotInheritable,Static,Shared,Shadows,ReadOnly,WriteOnly,Dim,Const,WithEvents,Widening,Narrowing,Custom,Async:suggestion
@@ -0,0 +1,362 @@
1
+ ## Ignore Visual Studio temporary files, build results, and
2
+ ## files generated by popular Visual Studio add-ons.
3
+ ##
4
+ ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5
+
6
+ # User-specific files
7
+ *.rsuser
8
+ *.suo
9
+ *.user
10
+ *.userosscache
11
+ *.sln.docstates
12
+
13
+ # User-specific files (MonoDevelop/Xamarin Studio)
14
+ *.userprefs
15
+
16
+ # Mono auto generated files
17
+ mono_crash.*
18
+
19
+ # Build results
20
+ [Dd]ebug/
21
+ [Dd]ebugPublic/
22
+ [Rr]elease/
23
+ [Rr]eleases/
24
+ x64/
25
+ x86/
26
+ [Ww][Ii][Nn]32/
27
+ [Aa][Rr][Mm]/
28
+ [Aa][Rr][Mm]64/
29
+ bld/
30
+ [Bb]in/
31
+ [Oo]bj/
32
+ [Ll]og/
33
+ [Ll]ogs/
34
+
35
+ # Visual Studio 2015/2017 cache/options directory
36
+ .vs/
37
+ # Uncomment if you have tasks that create the project's static files in wwwroot
38
+ #wwwroot/
39
+
40
+ # Visual Studio 2017 auto generated files
41
+ Generated\ Files/
42
+
43
+ # MSTest test Results
44
+ [Tt]est[Rr]esult*/
45
+ [Bb]uild[Ll]og.*
46
+
47
+ # NUnit
48
+ *.VisualState.xml
49
+ TestResult.xml
50
+ nunit-*.xml
51
+
52
+ # Build Results of an ATL Project
53
+ [Dd]ebugPS/
54
+ [Rr]eleasePS/
55
+ dlldata.c
56
+
57
+ # Benchmark Results
58
+ BenchmarkDotNet.Artifacts/
59
+
60
+ # .NET Core
61
+ project.lock.json
62
+ project.fragment.lock.json
63
+ artifacts/
64
+
65
+ # ASP.NET Scaffolding
66
+ ScaffoldingReadMe.txt
67
+
68
+ # StyleCop
69
+ StyleCopReport.xml
70
+
71
+ # Files built by Visual Studio
72
+ *_i.c
73
+ *_p.c
74
+ *_h.h
75
+ *.ilk
76
+ *.meta
77
+ *.obj
78
+ *.iobj
79
+ *.pch
80
+ *.pdb
81
+ *.ipdb
82
+ *.pgc
83
+ *.pgd
84
+ *.rsp
85
+ *.sbr
86
+ *.tlb
87
+ *.tli
88
+ *.tlh
89
+ *.tmp
90
+ *.tmp_proj
91
+ *_wpftmp.csproj
92
+ *.log
93
+ *.vspscc
94
+ *.vssscc
95
+ .builds
96
+ *.pidb
97
+ *.svclog
98
+ *.scc
99
+
100
+ # Chutzpah Test files
101
+ _Chutzpah*
102
+
103
+ # Visual C++ cache files
104
+ ipch/
105
+ *.aps
106
+ *.ncb
107
+ *.opendb
108
+ *.opensdf
109
+ *.sdf
110
+ *.cachefile
111
+ *.VC.db
112
+ *.VC.VC.opendb
113
+
114
+ # Visual Studio profiler
115
+ *.psess
116
+ *.vsp
117
+ *.vspx
118
+ *.sap
119
+
120
+ # Visual Studio Trace Files
121
+ *.e2e
122
+
123
+ # TFS 2012 Local Workspace
124
+ $tf/
125
+
126
+ # Guidance Automation Toolkit
127
+ *.gpState
128
+
129
+ # ReSharper is a .NET coding add-in
130
+ _ReSharper*/
131
+ *.[Rr]e[Ss]harper
132
+ *.DotSettings.user
133
+
134
+ # TeamCity is a build add-in
135
+ _TeamCity*
136
+
137
+ # DotCover is a Code Coverage Tool
138
+ *.dotCover
139
+
140
+ # AxoCover is a Code Coverage Tool
141
+ .axoCover/*
142
+ !.axoCover/settings.json
143
+
144
+ # Coverlet is a free, cross platform Code Coverage Tool
145
+ coverage*[.json, .xml, .info]
146
+
147
+ # Visual Studio code coverage results
148
+ *.coverage
149
+ *.coveragexml
150
+
151
+ # NCrunch
152
+ _NCrunch_*
153
+ .*crunch*.local.xml
154
+ nCrunchTemp_*
155
+
156
+ # MightyMoose
157
+ *.mm.*
158
+ AutoTest.Net/
159
+
160
+ # Web workbench (sass)
161
+ .sass-cache/
162
+
163
+ # Installshield output folder
164
+ [Ee]xpress/
165
+
166
+ # DocProject is a documentation generator add-in
167
+ DocProject/buildhelp/
168
+ DocProject/Help/*.HxT
169
+ DocProject/Help/*.HxC
170
+ DocProject/Help/*.hhc
171
+ DocProject/Help/*.hhk
172
+ DocProject/Help/*.hhp
173
+ DocProject/Help/Html2
174
+ DocProject/Help/html
175
+
176
+ # Click-Once directory
177
+ publish/
178
+
179
+ # Publish Web Output
180
+ *.[Pp]ublish.xml
181
+ *.azurePubxml
182
+ # Note: Comment the next line if you want to checkin your web deploy settings,
183
+ # but database connection strings (with potential passwords) will be unencrypted
184
+ *.pubxml
185
+ *.publishproj
186
+
187
+ # Microsoft Azure Web App publish settings. Comment the next line if you want to
188
+ # checkin your Azure Web App publish settings, but sensitive information contained
189
+ # in these scripts will be unencrypted
190
+ PublishScripts/
191
+
192
+ # NuGet Packages
193
+ *.nupkg
194
+ # NuGet Symbol Packages
195
+ *.snupkg
196
+ # The packages folder can be ignored because of Package Restore
197
+ **/[Pp]ackages/*
198
+ # except build/, which is used as an MSBuild target.
199
+ !**/[Pp]ackages/build/
200
+ # Uncomment if necessary however generally it will be regenerated when needed
201
+ #!**/[Pp]ackages/repositories.config
202
+ # NuGet v3's project.json files produces more ignorable files
203
+ *.nuget.props
204
+ *.nuget.targets
205
+
206
+ # Microsoft Azure Build Output
207
+ csx/
208
+ *.build.csdef
209
+
210
+ # Microsoft Azure Emulator
211
+ ecf/
212
+ rcf/
213
+
214
+ # Windows Store app package directories and files
215
+ AppPackages/
216
+ BundleArtifacts/
217
+ Package.StoreAssociation.xml
218
+ _pkginfo.txt
219
+ *.appx
220
+ *.appxbundle
221
+ *.appxupload
222
+
223
+ # Visual Studio cache files
224
+ # files ending in .cache can be ignored
225
+ *.[Cc]ache
226
+ # but keep track of directories ending in .cache
227
+ !?*.[Cc]ache/
228
+
229
+ # Others
230
+ ClientBin/
231
+ ~$*
232
+ *~
233
+ *.dbmdl
234
+ *.dbproj.schemaview
235
+ *.jfm
236
+ *.pfx
237
+ *.publishsettings
238
+ orleans.codegen.cs
239
+
240
+ # Including strong name files can present a security risk
241
+ # (https://github.com/github/gitignore/pull/2483#issue-259490424)
242
+ #*.snk
243
+
244
+ # Since there are multiple workflows, uncomment next line to ignore bower_components
245
+ # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
246
+ #bower_components/
247
+
248
+ # RIA/Silverlight projects
249
+ Generated_Code/
250
+
251
+ # Backup & report files from converting an old project file
252
+ # to a newer Visual Studio version. Backup files are not needed,
253
+ # because we have git ;-)
254
+ _UpgradeReport_Files/
255
+ Backup*/
256
+ UpgradeLog*.XML
257
+ UpgradeLog*.htm
258
+ ServiceFabricBackup/
259
+ *.rptproj.bak
260
+
261
+ # SQL Server files
262
+ *.mdf
263
+ *.ldf
264
+ *.ndf
265
+
266
+ # Business Intelligence projects
267
+ *.rdl.data
268
+ *.bim.layout
269
+ *.bim_*.settings
270
+ *.rptproj.rsuser
271
+ *- [Bb]ackup.rdl
272
+ *- [Bb]ackup ([0-9]).rdl
273
+ *- [Bb]ackup ([0-9][0-9]).rdl
274
+
275
+ # Microsoft Fakes
276
+ FakesAssemblies/
277
+
278
+ # GhostDoc plugin setting file
279
+ *.GhostDoc.xml
280
+
281
+ # Node.js Tools for Visual Studio
282
+ .ntvs_analysis.dat
283
+ node_modules/
284
+
285
+ # Visual Studio 6 build log
286
+ *.plg
287
+
288
+ # Visual Studio 6 workspace options file
289
+ *.opt
290
+
291
+ # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
292
+ *.vbw
293
+
294
+ # Visual Studio LightSwitch build output
295
+ **/*.HTMLClient/GeneratedArtifacts
296
+ **/*.DesktopClient/GeneratedArtifacts
297
+ **/*.DesktopClient/ModelManifest.xml
298
+ **/*.Server/GeneratedArtifacts
299
+ **/*.Server/ModelManifest.xml
300
+ _Pvt_Extensions
301
+
302
+ # Paket dependency manager
303
+ .paket/paket.exe
304
+ paket-files/
305
+
306
+ # FAKE - F# Make
307
+ .fake/
308
+
309
+ # CodeRush personal settings
310
+ .cr/personal
311
+
312
+ # Python Tools for Visual Studio (PTVS)
313
+ __pycache__/
314
+ *.pyc
315
+
316
+ # Cake - Uncomment if you are using it
317
+ # tools/**
318
+ # !tools/packages.config
319
+
320
+ # Tabs Studio
321
+ *.tss
322
+
323
+ # Telerik's JustMock configuration file
324
+ *.jmconfig
325
+
326
+ # BizTalk build output
327
+ *.btp.cs
328
+ *.btm.cs
329
+ *.odx.cs
330
+ *.xsd.cs
331
+
332
+ # OpenCover UI analysis results
333
+ OpenCover/
334
+
335
+ # Azure Stream Analytics local run output
336
+ ASALocalRun/
337
+
338
+ # MSBuild Binary and Structured Log
339
+ *.binlog
340
+
341
+ # NVidia Nsight GPU debugger configuration file
342
+ *.nvuser
343
+
344
+ # MFractors (Xamarin productivity tool) working folder
345
+ .mfractor/
346
+
347
+ # Local History for Visual Studio
348
+ .localhistory/
349
+
350
+ # BeatPulse healthcheck temp database
351
+ healthchecksdb
352
+
353
+ # Backup folder for Package Reference Convert tool in Visual Studio 2017
354
+ MigrationBackup/
355
+
356
+ # Ionide (cross platform F# VS Code tools) working folder
357
+ .ionide/
358
+
359
+ # Fody - auto-generated XML schema
360
+ FodyWeavers.xsd
361
+
362
+ node_modules
@@ -1,18 +1,18 @@
1
- {
2
- "suppressINotifyPattern": false,
3
- "suppressGeneratedCodeAttribute": false,
4
- "language": "CS",
5
- "namespace": "Xrm",
6
- "serviceContextName": "CrmServiceContext",
7
- "generateActions": true,
8
- "generateGlobalOptionSets": false,
9
- "emitFieldsClasses": false,
10
- "entityTypesFolder": "Entities",
11
- "messagesTypesFolder": "Messages",
12
- "optionSetsTypesFolder": "OptionSets",
13
- "entityNamesFilter": [
14
- ],
15
- "messageNamesFilter": [
16
- "jt_*"
17
- ]
1
+ {
2
+ "suppressINotifyPattern": false,
3
+ "suppressGeneratedCodeAttribute": false,
4
+ "language": "CS",
5
+ "namespace": "Xrm",
6
+ "serviceContextName": "CrmServiceContext",
7
+ "generateActions": true,
8
+ "generateGlobalOptionSets": false,
9
+ "emitFieldsClasses": false,
10
+ "entityTypesFolder": "Entities",
11
+ "messagesTypesFolder": "Messages",
12
+ "optionSetsTypesFolder": "OptionSets",
13
+ "entityNamesFilter": [
14
+ ],
15
+ "messageNamesFilter": [
16
+ "jt_*"
17
+ ]
18
18
  }