File: dotnet-packages-props.rnc

package info (click to toggle)
emacs-non-dfsg 1%3A30.1%2B1-1
  • links: PTS
  • area: non-free
  • in suites: forky, sid, trixie
  • size: 35,612 kB
  • sloc: makefile: 809; sh: 55
file content (22 lines) | stat: -rw-r--r-- 665 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
default namespace = ""

start =
  element Project {
    element PropertyGroup {
      element ManagePackageVersionsCentrally { xsd:boolean },
      element CentralPackageTransitivePinningEnabled { xsd:boolean },
      element CentralPackageVersionOverrideEnabled { xsd:boolean }
    }?,
    element ItemGroup {
      attribute Condition { text }?,
      (element GlobalPackageReference {
         attribute Condition { text }?,
         attribute Include { xsd:NCName },
         attribute Version { xsd:NMTOKEN }
       }+
       | element PackageVersion {
           attribute Include { xsd:NCName },
           attribute Version { text }
         }+)
    }+
  }