all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob aa0139cb77906c44f22ef14f4029c57f5fd21c6c 34671 bytes (raw)
name: etc/schema/msbuild.rnc 	 # note: path name is non-authoritative(*)

  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
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
 
default namespace = ""
namespace ns1 = "http://schemas.microsoft.com/developer/msbuild/2003"

start = Project | ns1.Project
Project =
  element Project {
    attribute Sdk { text }?,
    (text
     | ItemGroup
     | element Import {
         attribute Project { text }
       }
     | element ProjectExtensions {
         element VisualStudio {
           element FlavorProperties {
             attribute GUID { text },
             element WebProjectProperties {
               element UseIIS { xsd:NCName },
               element AutoAssignPort { xsd:NCName },
               element DevelopmentServerPort { xsd:integer },
               element DevelopmentServerVPath { text },
               element IISUrl { xsd:anyURI },
               element NTLMAuthentication { xsd:NCName },
               element UseCustomServer { xsd:NCName },
               element CustomServerUrl { empty },
               element SaveServerSettingsInUserFile { xsd:NCName }
             }
           }
         }
       }
     | element PropertyGroup {
         attribute Condition { text }?,
         attribute Label { xsd:NCName }?,
         element TargetFrameworks { text }?,
         element ServiceName { xsd:NCName }?,
         (element DeployDefaultTargetFrameworkVersion { xsd:decimal },
          element VisualStudioVersion {
            attribute Condition { text },
            xsd:decimal
          })?,
         element ClientName { text }?,
         (element DisableDataAnnotationsParam { text }
          | element NSwagGenerateExceptionClasses { xsd:boolean })?,
         element WrapResponseMethods { text }?,
         (element NSwagOptions { text }
          | element TargetsForTfmSpecificBuildOutput { text })?,
         (element SoAssemblyFileVersion {
            attribute Condition { text },
            xsd:NMTOKEN
          },
          element SoReleaseVersion {
            attribute Condition { text },
            text
          })?,
         (element WebRoot { text },
          element WebProjectFile { text },
          element WebOutputPath { text })?,
         (element ApiName {
            attribute Condition { text },
            xsd:NCName
          }
          | element AppConfig { xsd:NCName }
          | element AppendTargetFrameworkToOutputPath { xsd:boolean }
          | element ApplicationIcon { text }
          | element ApplicationManifest { xsd:NCName }
          | element AspNetCoreHostingModel { xsd:NCName }
          | element AssemblyName { text }
          | element AssemblyOriginatorKeyFile { text }
          | element AssemblyTitle { text }
          | element AssemblyVersion { xsd:NMTOKEN }
          | element Authors { text }
          | element AutoGenerateBindingRedirects {
              attribute Condition { text }?,
              xsd:boolean
            }
          | element AzureFunctionsVersion { xsd:NCName }
          | element BicepCompileAfterTargets { xsd:NCName }
          | element BicepCompileBeforeTargets { xsd:NCName }
          | element BootstrapperEnabled { xsd:boolean }
          | element BuildServerSideRenderer { xsd:boolean }
          | element BuiltInComInteropSupport { xsd:boolean }
          | element Company { text }
          | element CopyLocalLockFileAssemblies { xsd:boolean }
          | element Copyright { text }
          | element DebugType {
              attribute Condition { text }?,
              xsd:NCName
            }
          | element DefaultItemExcludes { text }
          | element DefineConstants { text }
          | element DelaySign { xsd:boolean }
          | element Description { text }
          | element Deterministic { xsd:boolean }
          | element DisableTransitiveProjectReferences { xsd:boolean }
          | element DockerDefaultTargetOS { xsd:NCName }
          | element DockerfileContext { text }
          | element EmbedUntrackedSources { xsd:boolean }
          | element EnableCompressionInSingleFile { xsd:boolean }
          | element EnableDefaultCompileItems { xsd:boolean }
          | element EnableDefaultEmbeddedResourceItems { xsd:boolean }
          | element ErrorReport { xsd:NCName }
          | element FileVersion { xsd:NMTOKEN }
          | element FindInvalidProjectReferences { xsd:boolean }
          | element GenerateAssemblyInfo { xsd:boolean }
          | element GenerateBindingRedirectsOutputType { xsd:boolean }
          | element GenerateDocumentationFile { xsd:NCName }
          | element GeneratePackageOnBuild { xsd:NCName }
          | element GenerateResourceUsePreserializedResources {
              xsd:boolean
            }
          | element ImplicitUsings { xsd:NCName }
          | element IncludeNativeLibrariesForSelfExtract { xsd:boolean }
          | element IncludeSymbols { xsd:boolean }
          | element IsPackable { xsd:boolean }
          | element LangVersion { xsd:NMTOKEN }
          | element MapFileExtensions { xsd:boolean }
          | element NoWarn { text }
          | element Nullable { xsd:NCName }
          | element OutputPath { text }
          | element OutputType { xsd:NCName }
          | element PackageIcon { text }
          | element PackageIconUrl { empty }
          | element PackageId { text }
          | element PackageLicenseFile { xsd:NCName }
          | element PackageProjectUrl { xsd:anyURI }
          | element PackageReleaseNotes { text }
          | element PackageTags { text }
          | element PlatformTarget { xsd:NCName }
          | element Platforms { text }
          | element Prefer32Bit { xsd:boolean }
          | element ProduceReferenceAssembly { xsd:NCName }
          | element Product { text }
          | element ProjectGuid { text }
          | element PublishRepositoryUrl { xsd:boolean }
          | element PublishSingleFile { xsd:boolean }
          | element RepositoryType { empty }
          | element RepositoryUrl { empty }
          | element RestoreProjectStyle { xsd:NCName }
          | element RootNamespace { text }
          | element RunPostBuildEvent { xsd:NCName }
          | element RuntimeIdentifier { xsd:NCName }
          | element RuntimeIdentifiers { text }
          | element SatelliteResourceLanguages { xsd:NCName }
          | element SelfContained { xsd:boolean }
          | element SignAssembly { xsd:NCName }
          | element SoVersionOptions { xsd:NCName }
          | element SpaRoot { text }
          | element Summary { text }
          | element SupportedOSPlatformVersion { xsd:decimal }
          | element SymbolPackageFormat { xsd:NCName }
          | element TargetFramework { text }
          | element Title { text }
          | element TreatWarningsAsErrors { xsd:boolean }
          | element TypeScriptCompileBlocked {
              attribute Condition { text }?,
              xsd:boolean
            }
          | element TypeScriptToolsVersion { xsd:NCName }
          | element UseAppHost { xsd:boolean }
          | element UseApplicationTrust { xsd:boolean }
          | element UseWPF { xsd:boolean }
          | element UseWindowsForms { xsd:boolean }
          | element UserSecretsId { text }
          | element Version { text }
          | element WarningsAsErrors { empty }
          | element WasmMainJSPath { text })*,
         (element AvaloniaUseCompiledBindingsByDefault { xsd:boolean }
          | element _FunctionsSkipCleanOutput { xsd:boolean }
          | (element ApplicationId { xsd:NCName },
             element ApplicationVersion { xsd:integer },
             element ApplicationDisplayVersion { xsd:decimal },
             element AndroidPackageFormat { xsd:NCName },
             element AndroidEnableProfiledAot { xsd:NCName })
          | (element OutDir { text },
             element ExcludeXmlAssemblyFiles { xsd:boolean }))?,
         element EnableUnsafeBinaryFormatterSerialization {
           xsd:boolean
         }?,
         (element AssemblySearchPaths { text }
          | element BaseOutputPath { text }
          | element ContinuousIntegrationBuild { xsd:boolean }
          | element DebugSymbols { xsd:boolean }
          | element DefaultDocumentationIncludeUndocumentedItems {
              xsd:boolean
            }
          | element DscZipFile { text }
          | element IncludeAllContentForSelfExtract { xsd:boolean }
          | element IsTestProject { xsd:boolean }
          | element Optimize { xsd:boolean }
          | element PackageRequireLicenseAcceptance { xsd:boolean }
          | element ShouldIncludeNativeSkiaSharp { xsd:NCName }
          | element StartupObject { xsd:NCName }
          | (element SccProjectName { xsd:NCName },
             element SccProvider { xsd:NCName },
             element SccAuxPath { xsd:NCName },
             element SccLocalPath { xsd:NCName })
          | (element CFBundleName { text },
             element CFBundleDisplayName { text },
             element CFBundleIdentifier { xsd:NCName },
             element CFBundleVersion { xsd:NMTOKEN },
             element CFBundleShortVersionString { xsd:NMTOKEN },
             element CFBundlePackageType { xsd:NCName },
             element CFBundleExecutable { xsd:NCName },
             element CFBundleIconFile { xsd:NCName },
             element NSPrincipalClass { xsd:NCName },
             element NSHighResolutionCapable { xsd:boolean }))?
       }
     | element Target {
         attribute AfterTargets { xsd:NCName }?,
         attribute BeforeTargets { xsd:NCName }?,
         attribute Condition { text }?,
         attribute DependsOnTargets { text }?,
         attribute Inputs { text }?,
         attribute Name { xsd:NCName },
         attribute Outputs { text }?,
         (ItemGroup
          | element Error {
              attribute Condition { text },
              attribute Text { text }
            }
          | element Exec {
              attribute Command { text },
              attribute Condition { text }?,
              attribute ContinueOnError { xsd:boolean }?,
              attribute EnvironmentVariables { text }?,
              attribute WorkingDirectory { text }?,
              element Output {
                attribute PropertyName { xsd:NCName },
                attribute TaskParameter { xsd:NCName }
              }?
            }
          | element MakeDir {
              attribute Directories { text }
            }
          | element Message {
              attribute Condition { text }?,
              attribute Importance { xsd:NCName },
              attribute Text { text }
            })*,
         (element Copy {
            attribute DestinationFolder { text },
            attribute SourceFiles { text }
          }
          | element MSBuild {
              attribute BuildInParallel { xsd:boolean },
              attribute Projects { text },
              attribute Properties { text },
              attribute Targets { xsd:NCName }
            })?
       })+
  }
ns1.Project =
  element ns1:Project {
    attribute DefaultTargets { xsd:NCName }?,
    attribute ToolsVersion { xsd:decimal }?,
    (text
     | ns1.ItemGroup
     | ns1.PropertyGroup
     | element ns1:Choose {
         element ns1:When {
           attribute Condition { text },
           (ns1.PropertyGroup | ns1.ItemGroup+)
         }+,
         element ns1:Otherwise { ns1.ItemGroup }?
       }
     | element ns1:Import {
         attribute Condition { text }?,
         attribute Label { xsd:NCName }?,
         attribute Project { text }
       }
     | element ns1:ProjectExtensions {
         element ns1:VisualStudio {
           element ns1:FlavorProperties {
             attribute GUID { text },
             (element ns1:WebProjectProperties {
                (element ns1:UseIIS { xsd:NCName },
                 element ns1:AutoAssignPort { xsd:NCName },
                 element ns1:DevelopmentServerPort { xsd:integer },
                 element ns1:DevelopmentServerVPath { text },
                 element ns1:IISUrl { xsd:anyURI },
                 element ns1:NTLMAuthentication { xsd:NCName },
                 element ns1:UseCustomServer { xsd:NCName },
                 element ns1:CustomServerUrl { empty })?,
                element ns1:SaveServerSettingsInUserFile { xsd:NCName }
              }
              | (element ns1:ProjectProperties {
                   attribute AddItemTemplatesGuid { text },
                   attribute ApplicationType { xsd:NCName },
                   attribute DebugInfoExeName { text },
                   attribute HostName { xsd:NCName },
                   attribute HostPackage { text },
                   attribute Language { xsd:NCName },
                   attribute OfficeVersion { xsd:decimal },
                   attribute TemplatesPath { xsd:NCName },
                   attribute VstxVersion { xsd:decimal }
                 },
                 element ns1:Host {
                   attribute GeneratedCodeNamespace { xsd:NCName },
                   attribute IconIndex { xsd:integer },
                   attribute Name { xsd:NCName },
                   attribute PublishedHash { text },
                   element ns1:HostItem {
                     attribute Blueprint { xsd:NCName },
                     attribute CanActivate { xsd:boolean },
                     attribute CanonicalName { xsd:NCName },
                     attribute Code { xsd:NCName },
                     attribute GeneratedCode { xsd:NCName },
                     attribute IconIndex { xsd:integer },
                     attribute Name { xsd:NCName },
                     attribute PublishedHash { text }
                   }
                 }))
           }
           | element ns1:UserProperties {
               attribute Name { xsd:NCName }
             }
         }
       }
     | element ns1:Target {
         attribute BeforeTargets { xsd:NCName }?,
         attribute Condition { text }?,
         attribute Name { xsd:NCName },
         attribute Outputs { text }?,
         (element ns1:Copy {
            attribute ContinueOnError { xsd:boolean }?,
            attribute DestinationFolder { text },
            attribute OverwriteReadOnlyFiles { xsd:NCName },
            attribute SourceFiles { text }
          }
          | element ns1:CreateItem {
              attribute Exclude { text }?,
              attribute Include { text },
              ns1.Output
            }
          | element ns1:Delete {
              attribute Files { text },
              attribute TreatErrorsAsWarnings { xsd:NCName }
            }
          | element ns1:Exec {
              attribute Command { text },
              attribute WorkingDirectory { text }?
            }
          | element ns1:GetVersionParts {
              attribute AssemblyPath { text },
              ns1.Output+
            }
          | element ns1:Message {
              attribute Importance { xsd:NCName }?,
              attribute Text { text }
            }
          | element ns1:TokenReplace {
              attribute Condition { text }?,
              attribute Destination { text },
              attribute Path { text },
              attribute Replacement { text },
              attribute Token { text }
            })*,
         (ns1.PropertyGroup
          | element ns1:CallTarget {
              attribute Condition { text }?,
              attribute Targets { xsd:NCName }
            }
          | (ns1.ItemGroup
             | element ns1:MakeDir {
                 attribute Directories { text }
               }
             | element ns1:WriteCodeFragment {
                 attribute AssemblyAttributes { text },
                 attribute Language { text },
                 attribute OutputFile { text }
               })*
          | element ns1:Error {
              attribute Condition { text },
              attribute HelpKeyword { xsd:NCName },
              attribute Text { text }
            }*)
       }
     | element ns1:UsingTask {
         attribute AssemblyFile { text },
         attribute TaskFactory { xsd:NCName },
         attribute TaskName { xsd:NCName },
         element ns1:ParameterGroup {
           (element ns1:AssemblyPath {
              attribute ParameterType { xsd:NCName },
              attribute Required { xsd:boolean }
            },
            element ns1:MajorVersion {
              attribute Output { xsd:boolean },
              attribute ParameterType { xsd:NCName }
            },
            element ns1:MinorVersion {
              attribute Output { xsd:boolean },
              attribute ParameterType { xsd:NCName }
            },
            element ns1:BuildVersion {
              attribute Output { xsd:boolean },
              attribute ParameterType { xsd:NCName }
            },
            element ns1:RevisionVersion {
              attribute Output { xsd:boolean },
              attribute ParameterType { xsd:NCName }
            })
           | (element ns1:Path {
                attribute ParameterType { xsd:NCName },
                attribute Required { xsd:boolean }
              },
              element ns1:Destination {
                attribute ParameterType { xsd:NCName },
                attribute Required { xsd:boolean }
              },
              element ns1:Token {
                attribute ParameterType { xsd:NCName },
                attribute Required { xsd:boolean }
              },
              element ns1:Replacement {
                attribute ParameterType { xsd:NCName },
                attribute Required { xsd:boolean }
              })
         },
         element ns1:Task {
           element ns1:Using {
             attribute Namespace { xsd:NCName }
           }?,
           element ns1:Code {
             attribute Language { xsd:NCName },
             attribute Type { xsd:NCName },
             text
           }
         }
       })+
  }
ItemGroup =
  element ItemGroup {
    attribute Condition { text }?,
    element Using {
      attribute Alias { xsd:NCName }?,
      attribute Include { xsd:NCName }
    }*,
    element FrameworkReference {
      attribute Include { xsd:NCName }
    }?,
    element _ReferenceCopyLocalPaths {
      attribute Include { text }
    }?,
    element Bicep {
      attribute Exclude { text }?,
      attribute Include { text }?,
      attribute OutputFile { text }?,
      attribute Update { text }?,
      element OutputFile { text }?
    }*,
    (element AndroidResource {
       attribute Include { xsd:NCName },
       Link
     }
     | element ApiClientGen {
         attribute Include { xsd:NCName }
       }
     | element Bicepparam {
         attribute Include { text }
       }
     | element BuildOutputInPackage {
         attribute Include { text },
         attribute TargetPath { text }
       }
     | element DesignData {
         attribute Include { text }
       }
     | element Service {
         attribute Include { text }
       }
     | (element DistFiles {
          attribute Condition { text }?,
          attribute Include { text }
        }+,
        element ResolvedFileToPublish {
          attribute Exclude { text },
          attribute Include { text },
          element RelativePath { text },
          CopyToPublishDirectory,
          ExcludeFromSingleFile?
        })
     | element ClaimsRequirement {
         attribute Include { xsd:NCName }
       }*
     | element DocumentName {
         attribute Include { xsd:NCName }
       }*
     | element Folder {
         attribute Include { text }
       }*
     | element Watch {
         attribute Exclude { text }?,
         attribute Include { text }?,
         attribute Remove { text }?
       }*
     | element OpenApiReference {
         attribute ClassName { text }?,
         attribute Include { text },
         attribute Namespace { text }?,
         attribute Options { text }?,
         element CodeGenerator { xsd:NCName }?
       }*),
    element WCFMetadata {
      attribute Include { text }
    }?,
    (element AdditionalFiles {
       attribute Remove { text }
     }
     | element ProjectsToPublish {
         attribute Include { text }
       })?,
    (element Compile {
       attribute Include { text }?,
       attribute Link { xsd:NCName }?,
       attribute Remove { text }?,
       attribute Update { text }?,
       Link?,
       (DependentUpon
        | element AutoGen { xsd:NCName }
        | element DesignTime { xsd:NCName })*,
       (SubType
        | element DesignTimeSharedInput { xsd:NCName })?
     }
     | element Content {
         attribute CopyToOutputDirectory { xsd:NCName }?,
         attribute CopyToPublishDirectory { xsd:NCName }?,
         attribute Exclude { text }?,
         attribute Include { text }?,
         attribute Link { text }?,
         attribute Remove { text }?,
         attribute Update { text }?,
         Link?,
         (CopyToOutputDirectory
          | CopyToPublishDirectory
          | DependentUpon
          | ExcludeFromSingleFile
          | SubType)*
       }
     | element EmbeddedResource {
         attribute Condition { text }?,
         attribute Include { text }?,
         attribute Link { text }?,
         attribute LogicalName { xsd:NCName }?,
         attribute Remove { text }?,
         attribute Update { text }?,
         (CopyToOutputDirectory
          | Link
          | element LogicalName { text })?,
         element CustomToolNamespace { xsd:NCName }?,
         (Generator, LastGenOutput)?,
         (DependentUpon | SubType)?
       }
     | element None {
         attribute CopyToOutputDirectory { xsd:NCName }?,
         attribute CopyToPublishDirectory { xsd:NCName }?,
         attribute Exclude { text }?,
         attribute Include { text }?,
         attribute Link { xsd:NCName }?,
         attribute Remove { text }?,
         attribute Update { text }?,
         (DependentUpon | SubType)?,
         Generator?,
         (LastGenOutput
          | (element Pack { xsd:NCName }
             | element PackagePath { empty })*),
         CopyToOutputDirectory?,
         CopyToPublishDirectory?
       }
     | element Resource {
         attribute Include { text }
       }
     | element WCFMetadataStorage {
         attribute Include { text }
       })*,
    (element AvaloniaXaml {
       attribute Remove { text }
     }
     | element COMReference {
         attribute Include { xsd:NCName },
         element Guid { text },
         element VersionMajor { xsd:integer },
         element VersionMinor { xsd:integer },
         element Lcid { xsd:integer },
         element WrapperTool { xsd:NCName },
         element Isolated { xsd:NCName },
         EmbedInteropTypes
       }
     | element WasmExtraFilesToDeploy {
         attribute Include { text }
       }
     | element ApiClient {
         attribute Include { xsd:NCName }
       }*
     | (element PackageDownload {
          attribute Include { xsd:NCName },
          attribute Version { text }
        }
        | element PackageReference {
            attribute Condition { text }?,
            attribute ExcludeAssets { xsd:NCName }?,
            attribute Include { xsd:NCName },
            attribute PrivateAssets { xsd:NCName }?,
            attribute Version { text }?,
            (element IncludeAssets { text }
             | element PrivateAssets { xsd:NCName })*
          }
        | element ProjectReference {
            attribute Include { text }?,
            attribute PrivateAssets { xsd:NCName }?,
            attribute Remove { xsd:NCName }?,
            (element Properties { text }
             | (Project,
                element Name { xsd:NCName }))?
          }
        | element Reference {
            attribute Include { text },
            (EmbedInteropTypes
             | element HintPath {
                 attribute Condition { text }?,
                 text
               }
             | element Private { xsd:NCName }
             | element SpecificVersion { xsd:NCName })*
          })*
     | element AvaloniaResource {
         attribute Include { text }?,
         attribute Remove { text }?
       }*
     | element TypeScriptCompile {
         attribute Include { text }?,
         attribute Remove { text }?,
         DependentUpon?
       }*
     | element Page {
         attribute Generator { xsd:NMTOKEN }?,
         attribute Include { text }?,
         attribute Remove { text }?,
         attribute SubType { xsd:NCName }?
       }*)
  }
ns1.PropertyGroup =
  element ns1:PropertyGroup {
    attribute Condition { text }?,
    element ns1:__paket__MSTest_TestAdapter_props { text }?,
    (element ns1:ApplicationManifest { xsd:NCName }
     | element ns1:__paket__MSTest_TestAdapter_targets { text })?,
    (element ns1:NugetFolder { text },
     element ns1:BuildFolder { text })?,
    element ns1:SoReleaseVersion { text }?,
    element ns1:__paket__MSTest_TestFramework_targets { text }?,
    element ns1:SoLegacyVersion { xsd:NCName }?,
    element ns1:SoBetaTag { empty }?,
    element ns1:ComputerName { text }?,
    (element ns1:AppDesignerFolder { xsd:NCName }
     | element ns1:ApplicationRevision { xsd:integer }
     | element ns1:ApplicationVersion { text }
     | element ns1:AssemblyName { xsd:NCName }
     | element ns1:AssemblyOriginatorKeyFile { text }
     | element ns1:AutoGenerateBindingRedirects { xsd:boolean }
     | element ns1:AutoIncrementApplicationRevision { xsd:boolean }
     | element ns1:BootstrapperEnabled { xsd:boolean }
     | element ns1:CodeAnalysisRuleSet { xsd:NCName }
     | element ns1:Configuration {
         attribute Condition { text },
         xsd:NCName
       }
     | element ns1:DebugSymbols { xsd:boolean }
     | element ns1:DebugType { xsd:NCName }
     | element ns1:DefineConstants { text }
     | element ns1:DependsOnNETStandard { xsd:NCName }
     | element ns1:Deterministic { xsd:boolean }
     | element ns1:DocumentationFile { text }
     | element ns1:EnableUnmanagedDebugging { xsd:boolean }
     | element ns1:ErrorReport { xsd:NCName }
     | element ns1:FileAlignment { xsd:integer }
     | element ns1:FileUpgradeFlags { empty }
     | element ns1:FindInvalidProjectReferences { xsd:boolean }
     | element ns1:FriendlyName { xsd:NCName }
     | element ns1:GenerateBindingRedirectsOutputType { xsd:boolean }
     | element ns1:IISExpressAnonymousAuthentication { empty }
     | element ns1:IISExpressSSLPort { text }
     | element ns1:IISExpressUseClassicPipelineMode { empty }
     | element ns1:IISExpressWindowsAuthentication { empty }
     | element ns1:Install { xsd:boolean }
     | element ns1:InstallFrom { xsd:NCName }
     | element ns1:InstallUrl { empty }
     | element ns1:IsCodedUITest { xsd:NCName }
     | element ns1:IsWebBootstrapper { xsd:NCName }
     | element ns1:LoadBehavior { xsd:integer }
     | element ns1:ManifestCertificateThumbprint { text }
     | element ns1:ManifestKeyFile { text }
     | element ns1:MapFileExtensions { xsd:boolean }
     | element ns1:NoStandardLibraries { xsd:boolean }
     | element ns1:NoWarn { text }
     | element ns1:NuGetPackageImportStamp { empty }
     | element ns1:NugetExe { text }
     | element ns1:OfficeApplicationDescription { empty }
     | element ns1:OldToolsVersion { xsd:decimal }
     | element ns1:Optimize { xsd:boolean }
     | element ns1:OutputPath { text }
     | element ns1:OutputType { xsd:NCName }
     | element ns1:PackageDestinationDirectory { text }
     | element ns1:Platform {
         attribute Condition { text },
         xsd:NCName
       }
     | element ns1:PlatformTarget { xsd:NCName }
     | element ns1:Prefer32Bit { xsd:boolean }
     | element ns1:ProductName { xsd:NCName }
     | element ns1:ProductVersion { text }
     | element ns1:ProjectGuid { text }
     | element ns1:ProjectTypeGuids { text }
     | element ns1:PublishUrl { text }
     | element ns1:PublisherName { empty }
     | element ns1:ReferencePath { text }
     | element ns1:RestorePackages { xsd:boolean }
     | element ns1:RootNamespace { xsd:NCName }
     | element ns1:RunPostBuildEvent { xsd:NCName }
     | element ns1:SccAuxPath { xsd:anyURI }
     | element ns1:SccLocalPath { xsd:NMTOKEN }
     | element ns1:SccProjectName { text }
     | element ns1:SccProvider { text }
     | element ns1:SchemaVersion { xsd:decimal }
     | element ns1:SignAssembly { xsd:boolean }
     | element ns1:SignManifests { xsd:boolean }
     | element ns1:SolutionDir {
         attribute Condition { text },
         text
       }
     | element ns1:StartupObject { empty }
     | element ns1:SuperOfficeBuildVersion { xsd:NMTOKEN }
     | element ns1:SuperOfficeDir { text }
     | element ns1:SuperOfficeTargetDir { text }
     | element ns1:SupportUrl { empty }
     | element ns1:TargetCulture { xsd:NCName }
     | element ns1:TargetFrameworkProfile { text }
     | element ns1:TargetFrameworkVersion { xsd:NCName }
     | element ns1:TestProjectType { xsd:NCName }
     | element ns1:TypeScriptCompileBlocked { xsd:boolean }
     | element ns1:TypeScriptToolsVersion { xsd:decimal }
     | element ns1:UpdateEnabled { xsd:boolean }
     | element ns1:UpdateInterval { xsd:integer }
     | element ns1:UpdateIntervalUnits { xsd:NCName }
     | element ns1:UpdateMode { xsd:NCName }
     | element ns1:UpdatePeriodically { xsd:boolean }
     | element ns1:UpdateRequired { xsd:boolean }
     | element ns1:UpgradeBackupLocation { empty }
     | element ns1:Use64BitIISExpress { empty }
     | element ns1:UseApplicationTrust { xsd:boolean }
     | element ns1:UseGlobalApplicationHostFile { empty }
     | element ns1:UseIISExpress { xsd:boolean }
     | element ns1:UseVSHostingProcess { xsd:boolean }
     | element ns1:VSTO_TrustAssembliesLocation { xsd:boolean }
     | element ns1:VSToolsPath {
         attribute Condition { text },
         text
       }
     | element ns1:VisualStudioVersion {
         attribute Condition { text },
         xsd:decimal
       }
     | element ns1:WarningLevel { xsd:integer }
     | element ns1:WcfConfigValidationEnabled { xsd:NCName })*,
    (element ns1:ApplicationIcon { xsd:NCName }
     | element ns1:ErrorText { text }
     | element ns1:RuntimeIdentifier { xsd:NCName })?,
    element ns1:PreBuildEvent {
      attribute Condition { text }?,
      text
    }?,
    (element ns1:OfficeApplication { xsd:NCName }
     | element ns1:__paket__NETStandard_Library_targets { text }
     | element ns1:PostBuildEvent {
         attribute Condition { text }?,
         text
       }*)
  }
ns1.ItemGroup =
  element ns1:ItemGroup {
    (element ns1:AssemblyAttributes {
       attribute Include { xsd:NCName },
       element ns1:_Parameter1 { text }
     }
     | element ns1:COMReference {
         attribute Include { xsd:NCName },
         element ns1:Guid { text },
         element ns1:VersionMajor { xsd:integer },
         element ns1:VersionMinor { xsd:integer },
         element ns1:Lcid { xsd:integer },
         element ns1:WrapperTool { xsd:NCName },
         element ns1:Isolated { xsd:NCName },
         ns1.EmbedInteropTypes
       }
     | element ns1:CodeAnalysisDependentAssemblyPaths {
         attribute Condition { text },
         attribute Include { text },
         element ns1:Visible { xsd:NCName }
       }
     | element ns1:PackageSourceDirectory {
         attribute Include { text }
       }
     | element ns1:WCFMetadata {
         attribute Include { text }
       }
     | element ns1:Page {
         attribute Include { text },
         ns1.Generator,
         ns1.SubType
       }*
     | element ns1:Analyzer {
         attribute Include { text },
         ns1.Paket
       }*
     | element ns1:Folder {
         attribute Include { text }
       }*
     | element ns1:Service {
         attribute Include { text }
       }*
     | element ns1:PackageReference {
         attribute Include { xsd:NCName },
         element ns1:Version { xsd:NMTOKEN }?
       }*
     | element ns1:ProjectReference {
         attribute Include { text },
         ns1.Project,
         element ns1:Name { xsd:NCName }
       }*),
    element ns1:ApplicationDefinition {
      attribute Include { xsd:NCName },
      ns1.Generator,
      ns1.SubType
    }?,
    (element ns1:WebReferences {
       attribute Include { text }
     }
     | element ns1:Reference {
         attribute Include { text },
         element ns1:SpecificVersion { xsd:NCName }?,
         ns1.EmbedInteropTypes?,
         element ns1:HintPath { text }?,
         element ns1:Private { xsd:NCName }?,
         (ns1.Paket
          | element ns1:RequiredTargetFramework { xsd:decimal })?
       }*),
    (element ns1:Compile {
       attribute Include { text },
       element ns1:AutoGen { xsd:NCName }?,
       ns1.Link?,
       (ns1.DependentUpon
        | element ns1:DesignTime { xsd:NCName }
        | element ns1:DesignTimeSharedInput { xsd:NCName })*,
       ns1.SubType?
     }
     | element ns1:Content {
         attribute Include { text },
         (ns1.DependentUpon | ns1.SubType)?
       }
     | element ns1:EmbeddedResource {
         attribute Include { text },
         (ns1.Generator, ns1.LastGenOutput)?,
         (ns1.DependentUpon | ns1.SubType)?
       }
     | element ns1:EntityDeploy {
         attribute Include { xsd:NCName },
         ns1.Generator,
         ns1.LastGenOutput
       }
     | element ns1:None {
         attribute Include { text },
         element ns1:CopyToOutputDirectory { xsd:NCName }?,
         ns1.Link?,
         (ns1.Generator, ns1.LastGenOutput)?,
         (ns1.DependentUpon | ns1.SubType)?
       })*,
    (element ns1:AppDesigner {
       attribute Include { text }
     }
     | element ns1:Resource {
         attribute Include { text }
       }*)
  }
ns1.Output =
  element ns1:Output {
    attribute ItemName { xsd:NCName }?,
    attribute PropertyName { xsd:NCName }?,
    attribute TaskParameter { xsd:NCName }
  }
CopyToPublishDirectory = element CopyToPublishDirectory { xsd:NCName }
ExcludeFromSingleFile = element ExcludeFromSingleFile { xsd:boolean }
Link = element Link { text }
SubType = element SubType { text }
DependentUpon = element DependentUpon { text }
Generator = element Generator { text }
LastGenOutput = element LastGenOutput { xsd:NCName }
CopyToOutputDirectory = element CopyToOutputDirectory { xsd:NCName }
EmbedInteropTypes = element EmbedInteropTypes { xsd:NCName }
ns1.Generator = element ns1:Generator { xsd:NMTOKEN }
ns1.SubType = element ns1:SubType { xsd:NCName }
ns1.EmbedInteropTypes = element ns1:EmbedInteropTypes { xsd:NCName }
ns1.Paket = element ns1:Paket { xsd:NCName }
ns1.DependentUpon = element ns1:DependentUpon { xsd:NCName }
ns1.Link = element ns1:Link { text }
ns1.LastGenOutput = element ns1:LastGenOutput { xsd:NCName }

debug log:

solving aa0139cb779 ...
found aa0139cb779 in https://yhetil.org/emacs/B388F2A0-37FB-4806-836A-28CB64D9C2F2@secure.kjonigsen.net/

applying [1/1] https://yhetil.org/emacs/B388F2A0-37FB-4806-836A-28CB64D9C2F2@secure.kjonigsen.net/
diff --git a/etc/schema/msbuild.rnc b/etc/schema/msbuild.rnc
new file mode 100644
index 00000000000..aa0139cb779

Checking patch etc/schema/msbuild.rnc...
Applied patch etc/schema/msbuild.rnc cleanly.

index at:
100644 aa0139cb77906c44f22ef14f4029c57f5fd21c6c	etc/schema/msbuild.rnc

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.