updated names
32d3374b
Poul Kjeldager Sørensen
committed
succeeded
26 changed files
AppModule.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/AppModule.cs+56
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/AppModule.cs
Add comment 13 using Microsoft.Xrm.Sdk.Client;
Add comment 14 using System;
Add comment 15 using System.Collections.Generic;
Add comment 16 Plus  using System.ComponentModel;
Add comment 17 Plus  using System.ComponentModel.DataAnnotations;
Add comment 16 18 using System.Diagnostics;
Add comment 17 19 using System.Linq;
Add comment 18 20 using System.Linq.Expressions;
Add comment 64 66 /// <para>Display Name: AppModuleId</para>
Add comment 65 67 /// </summary>
Add comment 66 68 [AttributeLogicalName("appmoduleid")]
Add comment 69 Plus   [DisplayName("AppModuleId")]
Add comment 67 70 public Guid? AppModuleId {
Add comment 68 71 get {
Add comment 69 72 return GetAttributeValue<Guid?>("appmoduleid");
Add comment 78 81 /// <para>Display Name: App Module Unique Id</para>
Add comment 79 82 /// </summary>
Add comment 80 83 [AttributeLogicalName("appmoduleidunique")]
Add comment 84 Plus   [DisplayName("App Module Unique Id")]
Add comment 81 85 public Guid? AppModuleIdUnique {
Add comment 82 86 get {
Add comment 83 87 return GetAttributeValue<Guid?>("appmoduleidunique");
Add comment 92 96 /// <para>Display Name: App Module Version</para>
Add comment 93 97 /// </summary>
Add comment 94 98 [AttributeLogicalName("appmoduleversion")]
Add comment 99 Plus   [DisplayName("App Module Version")]
Add comment 100 Plus   [MaxLength(48)]
Add comment 95 101 public string AppModuleVersion {
Add comment 96 102 get {
Add comment 97 103 return GetAttributeValue<string>("appmoduleversion");
Add comment 119 125 /// <para>Display Name: Client Type</para>
Add comment 120 126 /// </summary>
Add comment 121 127 [AttributeLogicalName("clienttype")]
Add comment 128 Plus   [DisplayName("Client Type")]
Add comment 129 Plus   [Range(1, 31)]
Add comment 122 130 public int? ClientType {
Add comment 123 131 get {
Add comment 124 132 return GetAttributeValue<int?>("clienttype");
Add comment 133 141 /// <para>Display Name: Component State</para>
Add comment 134 142 /// </summary>
Add comment 135 143 [AttributeLogicalName("componentstate")]
Add comment 144 Plus   [DisplayName("Component State")]
Add comment 136 145 public componentstate? ComponentState {
Add comment 137 146 get {
Add comment 138 147 return GetOptionSetValue<componentstate>("componentstate");
Add comment 157 166 /// <para>Display Name: Created By</para>
Add comment 158 167 /// </summary>
Add comment 159 168 [AttributeLogicalName("createdby")]
Add comment 169 Plus   [DisplayName("Created By")]
Add comment 160 170 public EntityReference CreatedBy {
Add comment 161 171 get {
Add comment 162 172 return GetAttributeValue<EntityReference>("createdby");
Add comment 168 178 /// <para>Display Name: Created On</para>
Add comment 169 179 /// </summary>
Add comment 170 180 [AttributeLogicalName("createdon")]
Add comment 181 Plus   [DisplayName("Created On")]
Add comment 171 182 public DateTime? CreatedOn {
Add comment 172 183 get {
Add comment 173 184 return GetAttributeValue<DateTime?>("createdon");
Add comment 179 190 /// <para>Display Name: Created By (Delegate)</para>
Add comment 180 191 /// </summary>
Add comment 181 192 [AttributeLogicalName("createdonbehalfby")]
Add comment 193 Plus   [DisplayName("Created By (Delegate)")]
Add comment 182 194 public EntityReference CreatedOnBehalfBy {
Add comment 183 195 get {
Add comment 184 196 return GetAttributeValue<EntityReference>("createdonbehalfby");
Add comment 190 202 /// <para>Display Name: Description</para>
Add comment 191 203 /// </summary>
Add comment 192 204 [AttributeLogicalName("description")]
Add comment 205 Plus   [DisplayName("Description")]
Add comment 206 Plus   [MaxLength(2000)]
Add comment 193 207 public string Description {
Add comment 194 208 get {
Add comment 195 209 return GetAttributeValue<string>("description");
Add comment 204 218 /// <para>Display Name: Descriptor</para>
Add comment 205 219 /// </summary>
Add comment 206 220 [AttributeLogicalName("descriptor")]
Add comment 221 Plus   [DisplayName("Descriptor")]
Add comment 222 Plus   [MaxLength(1073741823)]
Add comment 207 223 public string Descriptor {
Add comment 208 224 get {
Add comment 209 225 return GetAttributeValue<string>("descriptor");
Add comment 215 231 /// <para>Display Name: Event Handlers</para>
Add comment 216 232 /// </summary>
Add comment 217 233 [AttributeLogicalName("eventhandlers")]
Add comment 234 Plus   [DisplayName("Event Handlers")]
Add comment 235 Plus   [MaxLength(1073741823)]
Add comment 218 236 public string EventHandlers {
Add comment 219 237 get {
Add comment 220 238 return GetAttributeValue<string>("eventhandlers");
Add comment 229 247 /// <para>Display Name: Form Factor</para>
Add comment 230 248 /// </summary>
Add comment 231 249 [AttributeLogicalName("formfactor")]
Add comment 250 Plus   [DisplayName("Form Factor")]
Add comment 251 Plus   [Range(1, 8)]
Add comment 232 252 public int? FormFactor {
Add comment 233 253 get {
Add comment 234 254 return GetAttributeValue<int?>("formfactor");
Add comment 243 263 /// <para>Display Name: Import Sequence Number</para>
Add comment 244 264 /// </summary>
Add comment 245 265 [AttributeLogicalName("importsequencenumber")]
Add comment 266 Plus   [DisplayName("Import Sequence Number")]
Add comment 267 Plus   [Range(-2147483648, 2147483647)]
Add comment 246 268 public int? ImportSequenceNumber {
Add comment 247 269 get {
Add comment 248 270 return GetAttributeValue<int?>("importsequencenumber");
Add comment 257 279 /// <para>Display Name: Introduced Version</para>
Add comment 258 280 /// </summary>
Add comment 259 281 [AttributeLogicalName("introducedversion")]
Add comment 282 Plus   [DisplayName("Introduced Version")]
Add comment 283 Plus   [MaxLength(100)]
Add comment 260 284 public string IntroducedVersion {
Add comment 261 285 get {
Add comment 262 286 return GetAttributeValue<string>("introducedversion");
Add comment 271 295 /// <para>Display Name: Is Default</para>
Add comment 272 296 /// </summary>
Add comment 273 297 [AttributeLogicalName("isdefault")]
Add comment 298 Plus   [DisplayName("Is Default")]
Add comment 274 299 public bool? IsDefault {
Add comment 275 300 get {
Add comment 276 301 return GetAttributeValue<bool?>("isdefault");
Add comment 285 310 /// <para>Display Name: IsFeatured</para>
Add comment 286 311 /// </summary>
Add comment 287 312 [AttributeLogicalName("isfeatured")]
Add comment 313 Plus   [DisplayName("IsFeatured")]
Add comment 288 314 public bool? IsFeatured {
Add comment 289 315 get {
Add comment 290 316 return GetAttributeValue<bool?>("isfeatured");
Add comment 299 325 /// <para>Display Name: IsManaged</para>
Add comment 300 326 /// </summary>
Add comment 301 327 [AttributeLogicalName("ismanaged")]
Add comment 328 Plus   [DisplayName("IsManaged")]
Add comment 302 329 public bool? IsManaged {
Add comment 303 330 get {
Add comment 304 331 return GetAttributeValue<bool?>("ismanaged");
Add comment 310 337 /// <para>Display Name: Modified By</para>
Add comment 311 338 /// </summary>
Add comment 312 339 [AttributeLogicalName("modifiedby")]
Add comment 340 Plus   [DisplayName("Modified By")]
Add comment 313 341 public EntityReference ModifiedBy {
Add comment 314 342 get {
Add comment 315 343 return GetAttributeValue<EntityReference>("modifiedby");
Add comment 321 349 /// <para>Display Name: Modified On</para>
Add comment 322 350 /// </summary>
Add comment 323 351 [AttributeLogicalName("modifiedon")]
Add comment 352 Plus   [DisplayName("Modified On")]
Add comment 324 353 public DateTime? ModifiedOn {
Add comment 325 354 get {
Add comment 326 355 return GetAttributeValue<DateTime?>("modifiedon");
Add comment 332 361 /// <para>Display Name: Modified By (Delegate)</para>
Add comment 333 362 /// </summary>
Add comment 334 363 [AttributeLogicalName("modifiedonbehalfby")]
Add comment 364 Plus   [DisplayName("Modified By (Delegate)")]
Add comment 335 365 public EntityReference ModifiedOnBehalfBy {
Add comment 336 366 get {
Add comment 337 367 return GetAttributeValue<EntityReference>("modifiedonbehalfby");
Add comment 343 373 /// <para>Display Name: Name</para>
Add comment 344 374 /// </summary>
Add comment 345 375 [AttributeLogicalName("name")]
Add comment 376 Plus   [DisplayName("Name")]
Add comment 377 Plus   [MaxLength(100)]
Add comment 346 378 public string Name {
Add comment 347 379 get {
Add comment 348 380 return GetAttributeValue<string>("name");
Add comment 357 389 /// <para>Display Name: Navigation type</para>
Add comment 358 390 /// </summary>
Add comment 359 391 [AttributeLogicalName("navigationtype")]
Add comment 392 Plus   [DisplayName("Navigation type")]
Add comment 360 393 public AppModule_NavigationType? NavigationType {
Add comment 361 394 get {
Add comment 362 395 return GetOptionSetValue<AppModule_NavigationType>("navigationtype");
Add comment 371 404 /// <para>Display Name: Optimized Client</para>
Add comment 372 405 /// </summary>
Add comment 373 406 [AttributeLogicalName("optimizedfor")]
Add comment 407 Plus   [DisplayName("Optimized Client")]
Add comment 408 Plus   [MaxLength(200)]
Add comment 374 409 public string OptimizedFor {
Add comment 375 410 get {
Add comment 376 411 return GetAttributeValue<string>("optimizedfor");
Add comment 385 420 /// <para>Display Name: Organization</para>
Add comment 386 421 /// </summary>
Add comment 387 422 [AttributeLogicalName("organizationid")]
Add comment 423 Plus   [DisplayName("Organization")]
Add comment 388 424 public EntityReference OrganizationId {
Add comment 389 425 get {
Add comment 390 426 return GetAttributeValue<EntityReference>("organizationid");
Add comment 396 432 /// <para>Display Name: Record Created On</para>
Add comment 397 433 /// </summary>
Add comment 398 434 [AttributeLogicalName("overriddencreatedon")]
Add comment 435 Plus   [DisplayName("Record Created On")]
Add comment 399 436 public DateTime? OverriddenCreatedOn {
Add comment 400 437 get {
Add comment 401 438 return GetAttributeValue<DateTime?>("overriddencreatedon");
Add comment 410 447 /// <para>Display Name: Overwrite Time</para>
Add comment 411 448 /// </summary>
Add comment 412 449 [AttributeLogicalName("overwritetime")]
Add comment 450 Plus   [DisplayName("Overwrite Time")]
Add comment 413 451 public DateTime? OverwriteTime {
Add comment 414 452 get {
Add comment 415 453 return GetAttributeValue<DateTime?>("overwritetime");
Add comment 421 459 /// <para>Display Name: Published On</para>
Add comment 422 460 /// </summary>
Add comment 423 461 [AttributeLogicalName("publishedon")]
Add comment 462 Plus   [DisplayName("Published On")]
Add comment 424 463 public DateTime? PublishedOn {
Add comment 425 464 get {
Add comment 426 465 return GetAttributeValue<DateTime?>("publishedon");
Add comment 435 474 /// <para>Display Name: Publisher</para>
Add comment 436 475 /// </summary>
Add comment 437 476 [AttributeLogicalName("publisherid")]
Add comment 477 Plus   [DisplayName("Publisher")]
Add comment 438 478 public EntityReference PublisherId {
Add comment 439 479 get {
Add comment 440 480 return GetAttributeValue<EntityReference>("publisherid");
Add comment 449 489 /// <para>Display Name: Solution</para>
Add comment 450 490 /// </summary>
Add comment 451 491 [AttributeLogicalName("solutionid")]
Add comment 492 Plus   [DisplayName("Solution")]
Add comment 452 493 public Guid? SolutionId {
Add comment 453 494 get {
Add comment 454 495 return GetAttributeValue<Guid?>("solutionid");
Add comment 460 501 /// <para>Display Name: URL</para>
Add comment 461 502 /// </summary>
Add comment 462 503 [AttributeLogicalName("url")]
Add comment 504 Plus   [DisplayName("URL")]
Add comment 505 Plus   [MaxLength(200)]
Add comment 463 506 public string URL {
Add comment 464 507 get {
Add comment 465 508 return GetAttributeValue<string>("url");
Add comment 474 517 /// <para>Display Name: Unique Name</para>
Add comment 475 518 /// </summary>
Add comment 476 519 [AttributeLogicalName("uniquename")]
Add comment 520 Plus   [DisplayName("Unique Name")]
Add comment 521 Plus   [MaxLength(100)]
Add comment 477 522 public string UniqueName {
Add comment 478 523 get {
Add comment 479 524 return GetAttributeValue<string>("uniquename");
Add comment 495 540 /// <para>Display Name: Web Resource Id</para>
Add comment 496 541 /// </summary>
Add comment 497 542 [AttributeLogicalName("webresourceid")]
Add comment 543 Plus   [DisplayName("Web Resource Id")]
Add comment 498 544 public Guid? WebResourceId {
Add comment 499 545 get {
Add comment 500 546 return GetAttributeValue<Guid?>("webresourceid");
Add comment 509 555 /// <para>Display Name: Welcome Page Id</para>
Add comment 510 556 /// </summary>
Add comment 511 557 [AttributeLogicalName("welcomepageid")]
Add comment 558 Plus   [DisplayName("Welcome Page Id")]
Add comment 512 559 public Guid? WelcomePageId {
Add comment 513 560 get {
Add comment 514 561 return GetAttributeValue<Guid?>("welcomepageid");
Add comment 523 570 /// <para>Display Name: Status</para>
Add comment 524 571 /// </summary>
Add comment 525 572 [AttributeLogicalName("statecode")]
Add comment 573 Plus   [DisplayName("Status")]
Add comment 526 574 public AppModuleState? statecode {
Add comment 527 575 get {
Add comment 528 576 return GetOptionSetValue<AppModuleState>("statecode");
Add comment 537 585 /// <para>Display Name: Status Reason</para>
Add comment 538 586 /// </summary>
Add comment 539 587 [AttributeLogicalName("statuscode")]
Add comment 588 Plus   [DisplayName("Status Reason")]
Add comment 540 589 public AppModule_statuscode? statuscode {
Add comment 541 590 get {
Add comment 542 591 return GetOptionSetValue<AppModule_statuscode>("statuscode");
Add comment 586 635 public enum AppModuleState {
Add comment 587 636
Add comment 588 637 [EnumMember()]
Add comment 638 Plus   [OptionSetMetadata("Active", Index=0)]
Add comment 589 639 Active = 0,
Add comment 590 640
Add comment 591 641 [EnumMember()]
Add comment 642 Plus   [OptionSetMetadata("Inactive", Index=1)]
Add comment 592 643 Inactive = 1,
Add comment 593 644 }
Add comment 594 645
Add comment 596 647 public enum AppModule_NavigationType {
Add comment 597 648
Add comment 598 649 [EnumMember()]
Add comment 650 Plus   [OptionSetMetadata("Single session", Index=0)]
Add comment 599 651 Singlesession = 0,
Add comment 600 652
Add comment 601 653 [EnumMember()]
Add comment 654 Plus   [OptionSetMetadata("Multi session", Index=1)]
Add comment 602 655 Multisession = 1,
Add comment 603 656 }
Add comment 604 657
Add comment 606 659 public enum AppModule_statuscode {
Add comment 607 660
Add comment 608 661 [EnumMember()]
Add comment 662 Plus   [OptionSetMetadata("Active", Index=0)]
Add comment 609 663 Active = 1,
Add comment 610 664
Add comment 611 665 [EnumMember()]
Add comment 666 Plus   [OptionSetMetadata("Inactive", Index=1)]
Add comment 612 667 Inactive = 2,
Add comment 613 668
Add comment 614 669 [EnumMember()]
Add comment 670 Plus   [OptionSetMetadata("Deleted", Index=2)]
Add comment 615 671 Deleted = 3,
Add comment 616 672 }
Add comment 617 673 }
AppModuleRoles.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/AppModuleRoles.cs+11
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/AppModuleRoles.cs
Add comment 13 using Microsoft.Xrm.Sdk.Client;
Add comment 14 using System;
Add comment 15 using System.Collections.Generic;
Add comment 16 Plus  using System.ComponentModel;
Add comment 17 Plus  using System.ComponentModel.DataAnnotations;
Add comment 16 18 using System.Diagnostics;
Add comment 17 19 using System.Linq;
Add comment 18 20 using System.Linq.Expressions;
Add comment 77 79 /// <para>Display Name: AppModule</para>
Add comment 78 80 /// </summary>
Add comment 79 81 [AttributeLogicalName("appmoduleid")]
Add comment 82 Plus   [DisplayName("AppModule")]
Add comment 80 83 public EntityReference AppModuleId {
Add comment 81 84 get {
Add comment 82 85 return GetAttributeValue<EntityReference>("appmoduleid");
Add comment 88 91 /// <para>Display Name: App Module Role Unique Id</para>
Add comment 89 92 /// </summary>
Add comment 90 93 [AttributeLogicalName("appmoduleroleidunique")]
Add comment 94 Plus   [DisplayName("App Module Role Unique Id")]
Add comment 91 95 public Guid? AppModuleRoleIdUnique {
Add comment 92 96 get {
Add comment 93 97 return GetAttributeValue<Guid?>("appmoduleroleidunique");
Add comment 102 106 /// <para>Display Name: Component State</para>
Add comment 103 107 /// </summary>
Add comment 104 108 [AttributeLogicalName("componentstate")]
Add comment 109 Plus   [DisplayName("Component State")]
Add comment 105 110 public componentstate? ComponentState {
Add comment 106 111 get {
Add comment 107 112 return GetOptionSetValue<componentstate>("componentstate");
Add comment 113 118 /// <para>Display Name: Introduced Version</para>
Add comment 114 119 /// </summary>
Add comment 115 120 [AttributeLogicalName("introducedversion")]
Add comment 121 Plus   [DisplayName("Introduced Version")]
Add comment 122 Plus   [MaxLength(100)]
Add comment 116 123 public string IntroducedVersion {
Add comment 117 124 get {
Add comment 118 125 return GetAttributeValue<string>("introducedversion");
Add comment 127 134 /// <para>Display Name: IsManaged</para>
Add comment 128 135 /// </summary>
Add comment 129 136 [AttributeLogicalName("ismanaged")]
Add comment 137 Plus   [DisplayName("IsManaged")]
Add comment 130 138 public bool? IsManaged {
Add comment 131 139 get {
Add comment 132 140 return GetAttributeValue<bool?>("ismanaged");
Add comment 138 146 /// <para>Display Name: Overwrite Time</para>
Add comment 139 147 /// </summary>
Add comment 140 148 [AttributeLogicalName("overwritetime")]
Add comment 149 Plus   [DisplayName("Overwrite Time")]
Add comment 141 150 public DateTime? OverwriteTime {
Add comment 142 151 get {
Add comment 143 152 return GetAttributeValue<DateTime?>("overwritetime");
Add comment 148 157 /// <para>Display Name: Role</para>
Add comment 149 158 /// </summary>
Add comment 150 159 [AttributeLogicalName("roleid")]
Add comment 160 Plus   [DisplayName("Role")]
Add comment 151 161 public EntityReference RoleId {
Add comment 152 162 get {
Add comment 153 163 return GetAttributeValue<EntityReference>("roleid");
Add comment 159 169 /// <para>Display Name: Solution</para>
Add comment 160 170 /// </summary>
Add comment 161 171 [AttributeLogicalName("solutionid")]
Add comment 172 Plus   [DisplayName("Solution")]
Add comment 162 173 public Guid? SolutionId {
Add comment 163 174 get {
Add comment 164 175 return GetAttributeValue<Guid?>("solutionid");
CustomControl.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/CustomControl.cs+23
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/CustomControl.cs
Add comment 13 using Microsoft.Xrm.Sdk.Client;
Add comment 14 using System;
Add comment 15 using System.Collections.Generic;
Add comment 16 Plus  using System.ComponentModel;
Add comment 17 Plus  using System.ComponentModel.DataAnnotations;
Add comment 16 18 using System.Diagnostics;
Add comment 17 19 using System.Linq;
Add comment 18 20 using System.Linq.Expressions;
Add comment 64 66 /// <para>Display Name: Custom Control Identifier</para>
Add comment 65 67 /// </summary>
Add comment 66 68 [AttributeLogicalName("customcontrolid")]
Add comment 69 Plus   [DisplayName("Custom Control Identifier")]
Add comment 67 70 public Guid? CustomControlId {
Add comment 68 71 get {
Add comment 69 72 return GetAttributeValue<Guid?>("customcontrolid");
Add comment 78 81 /// <para>Display Name: Authoring Manifest</para>
Add comment 79 82 /// </summary>
Add comment 80 83 [AttributeLogicalName("authoringmanifest")]
Add comment 84 Plus   [DisplayName("Authoring Manifest")]
Add comment 81 85 public string AuthoringManifest {
Add comment 82 86 get {
Add comment 83 87 return GetAttributeValue<string>("authoringmanifest");
Add comment 92 96 /// <para>Display Name: Custom control data in JSON format.</para>
Add comment 93 97 /// </summary>
Add comment 94 98 [AttributeLogicalName("clientjson")]
Add comment 99 Plus   [DisplayName("Custom control data in JSON format.")]
Add comment 95 100 public string ClientJson {
Add comment 96 101 get {
Add comment 97 102 return GetAttributeValue<string>("clientjson");
Add comment 105 110 /// <para>Compatible Data Types For Custom Controls</para>
Add comment 106 111 /// </summary>
Add comment 107 112 [AttributeLogicalName("compatibledatatypes")]
Add comment 113 Plus   [MaxLength(1000)]
Add comment 108 114 public string CompatibleDataTypes {
Add comment 109 115 get {
Add comment 110 116 return GetAttributeValue<string>("compatibledatatypes");
Add comment 119 125 /// <para>Display Name: Component State</para>
Add comment 120 126 /// </summary>
Add comment 121 127 [AttributeLogicalName("componentstate")]
Add comment 128 Plus   [DisplayName("Component State")]
Add comment 122 129 public componentstate? ComponentState {
Add comment 123 130 get {
Add comment 124 131 return GetOptionSetValue<componentstate>("componentstate");
Add comment 130 137 /// <para>Display Name: Created By</para>
Add comment 131 138 /// </summary>
Add comment 132 139 [AttributeLogicalName("createdby")]
Add comment 140 Plus   [DisplayName("Created By")]
Add comment 133 141 public EntityReference CreatedBy {
Add comment 134 142 get {
Add comment 135 143 return GetAttributeValue<EntityReference>("createdby");
Add comment 141 149 /// <para>Display Name: Created On</para>
Add comment 142 150 /// </summary>
Add comment 143 151 [AttributeLogicalName("createdon")]
Add comment 152 Plus   [DisplayName("Created On")]
Add comment 144 153 public DateTime? CreatedOn {
Add comment 145 154 get {
Add comment 146 155 return GetAttributeValue<DateTime?>("createdon");
Add comment 152 161 /// <para>Display Name: Created By (Delegate)</para>
Add comment 153 162 /// </summary>
Add comment 154 163 [AttributeLogicalName("createdonbehalfby")]
Add comment 164 Plus   [DisplayName("Created By (Delegate)")]
Add comment 155 165 public EntityReference CreatedOnBehalfBy {
Add comment 156 166 get {
Add comment 157 167 return GetAttributeValue<EntityReference>("createdonbehalfby");
Add comment 173 183 /// <para>Display Name: Introduced Version</para>
Add comment 174 184 /// </summary>
Add comment 175 185 [AttributeLogicalName("introducedversion")]
Add comment 186 Plus   [DisplayName("Introduced Version")]
Add comment 187 Plus   [MaxLength(48)]
Add comment 176 188 public string IntroducedVersion {
Add comment 177 189 get {
Add comment 178 190 return GetAttributeValue<string>("introducedversion");
Add comment 194 206 /// <para>Display Name: Manifest</para>
Add comment 195 207 /// </summary>
Add comment 196 208 [AttributeLogicalName("manifest")]
Add comment 209 Plus   [DisplayName("Manifest")]
Add comment 197 210 public string Manifest {
Add comment 198 211 get {
Add comment 199 212 return GetAttributeValue<string>("manifest");
Add comment 208 221 /// <para>Display Name: Modified By</para>
Add comment 209 222 /// </summary>
Add comment 210 223 [AttributeLogicalName("modifiedby")]
Add comment 224 Plus   [DisplayName("Modified By")]
Add comment 211 225 public EntityReference ModifiedBy {
Add comment 212 226 get {
Add comment 213 227 return GetAttributeValue<EntityReference>("modifiedby");
Add comment 219 233 /// <para>Display Name: Modified On</para>
Add comment 220 234 /// </summary>
Add comment 221 235 [AttributeLogicalName("modifiedon")]
Add comment 236 Plus   [DisplayName("Modified On")]
Add comment 222 237 public DateTime? ModifiedOn {
Add comment 223 238 get {
Add comment 224 239 return GetAttributeValue<DateTime?>("modifiedon");
Add comment 230 245 /// <para>Display Name: Modified By (Delegate)</para>
Add comment 231 246 /// </summary>
Add comment 232 247 [AttributeLogicalName("modifiedonbehalfby")]
Add comment 248 Plus   [DisplayName("Modified By (Delegate)")]
Add comment 233 249 public EntityReference ModifiedOnBehalfBy {
Add comment 234 250 get {
Add comment 235 251 return GetAttributeValue<EntityReference>("modifiedonbehalfby");
Add comment 241 257 /// <para>Display Name: Name</para>
Add comment 242 258 /// </summary>
Add comment 243 259 [AttributeLogicalName("name")]
Add comment 260 Plus   [DisplayName("Name")]
Add comment 261 Plus   [MaxLength(200)]
Add comment 244 262 public string Name {
Add comment 245 263 get {
Add comment 246 264 return GetAttributeValue<string>("name");
Add comment 255 273 /// <para>Display Name: Organization</para>
Add comment 256 274 /// </summary>
Add comment 257 275 [AttributeLogicalName("organizationid")]
Add comment 276 Plus   [DisplayName("Organization")]
Add comment 258 277 public EntityReference OrganizationId {
Add comment 259 278 get {
Add comment 260 279 return GetAttributeValue<EntityReference>("organizationid");
Add comment 266 285 /// <para>Display Name: Record Overwrite Time</para>
Add comment 267 286 /// </summary>
Add comment 268 287 [AttributeLogicalName("overwritetime")]
Add comment 288 Plus   [DisplayName("Record Overwrite Time")]
Add comment 269 289 public DateTime? OverwriteTime {
Add comment 270 290 get {
Add comment 271 291 return GetAttributeValue<DateTime?>("overwritetime");
Add comment 277 297 /// <para>Display Name: Solution</para>
Add comment 278 298 /// </summary>
Add comment 279 299 [AttributeLogicalName("solutionid")]
Add comment 300 Plus   [DisplayName("Solution")]
Add comment 280 301 public Guid? SolutionId {
Add comment 281 302 get {
Add comment 282 303 return GetAttributeValue<Guid?>("solutionid");
Add comment 287 308 /// <para>For internal use only.</para>
Add comment 288 309 /// </summary>
Add comment 289 310 [AttributeLogicalName("version")]
Add comment 311 Plus   [MaxLength(40)]
Add comment 290 312 public string Version {
Add comment 291 313 get {
Add comment 292 314 return GetAttributeValue<string>("version");
Add comment 301 323 /// <para>Display Name: Version Number</para>
Add comment 302 324 /// </summary>
Add comment 303 325 [AttributeLogicalName("versionnumber")]
Add comment 326 Plus   [DisplayName("Version Number")]
Add comment 304 327 public long? VersionNumber {
Add comment 305 328 get {
Add comment 306 329 return GetAttributeValue<long?>("versionnumber");
GlobalOptionSets.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/GlobalOptionSets.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/GlobalOptionSets.cs
Role.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/Role.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/Role.cs
SavedQuery.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/SavedQuery.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/SavedQuery.cs
SdkMessage.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/SdkMessage.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/SdkMessage.cs
SdkMessageProcessingStep.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/SdkMessageProcessingStep.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/SdkMessageProcessingStep.cs
SdkMessageProcessingStepImage.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/SdkMessageProcessingStepImage.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/SdkMessageProcessingStepImage.cs
SiteMap.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/SiteMap.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/SiteMap.cs
Solution.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/Solution.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/Solution.cs
SystemForm.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/SystemForm.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/SystemForm.cs
WebResource.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/WebResource.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/WebResource.cs
Workflow.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/Workflow.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/Workflow.cs
XrmContext.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/XrmContext.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/XrmContext.cs
XrmExtensions.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/XrmExtensions.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/CDS/XrmExtensions.cs
Column.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/Model/Column.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/Model/Column.cs
Control.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/Model/Control.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/Model/Control.cs
DisplayConditions.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/Model/DisplayConditions.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/Model/DisplayConditions.cs
Section.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/Model/Section.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/Model/Section.cs
Tab.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/Model/Tab.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/Model/Tab.cs
AttributeTypeCodeConverter.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/Serialization/AttributeTypeCodeConverter.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/Serialization/AttributeTypeCodeConverter.cs
ManifestCommand.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/ManifestCommand.cs
/apps/DotNetDevOps.Extensions.PowerPlatform.CLI/Subcommands/ManifestCommand.cs
DotNetDevOps.Extensions.PowerPlatform.MSBuild.DataverseContext.targets
/msbuild/build/DotNetDevOps.Extensions.PowerPlatform.MSBuild.DataverseContext.targets
/msbuild/build/DotNetDevOps.Extensions.PowerPlatform.MSBuild.DataverseContext.targets
Renamed from
/msbuild/build/DotNetDevOps.Extensions.PowerPlatform.MSBuild.CDSContext.targets
The file content is identical.
DotNetDevOps.Extensions.PowerPlatform.MSBuild.DataverseContext.nuspec
/msbuild/DotNetDevOps.Extensions.PowerPlatform.MSBuild.DataverseContext.nuspec
/msbuild/DotNetDevOps.Extensions.PowerPlatform.MSBuild.DataverseContext.nuspec
Renamed from
/msbuild/DotNetDevOps.Extensions.PowerPlatform.MSBuild.CDSContext.nuspec
The file content is identical.
DotNetDevOps.Extensions.PowerPlatform.sln
/DotNetDevOps.Extensions.PowerPlatform.sln
/DotNetDevOps.Extensions.PowerPlatform.sln