@halospv3/hce.shared-config 3.0.0-develop.2 → 3.0.0-develop.21

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.
Files changed (188) hide show
  1. package/CHANGELOG.md +164 -0
  2. package/dotnet/.github/workflows/_unit_test.yml +0 -3
  3. package/dotnet/.github/workflows/dotnet-release.yml +0 -3
  4. package/dotnet/.github/workflows/sample-dotnet-build.yml +0 -3
  5. package/dotnet/PublishAll.targets +3 -2
  6. package/dotnet/ZipPublishDir.targets +24 -29
  7. package/mjs/CaseInsensitiveMap.d.ts +12 -0
  8. package/mjs/CaseInsensitiveMap.d.ts.map +1 -0
  9. package/mjs/CaseInsensitiveMap.mjs +33 -0
  10. package/mjs/CaseInsensitiveMap.mjs.map +1 -0
  11. package/mjs/commitlintConfig.d.ts +12 -0
  12. package/mjs/commitlintConfig.d.ts.map +1 -0
  13. package/mjs/commitlintConfig.mjs +13 -0
  14. package/mjs/commitlintConfig.mjs.map +1 -0
  15. package/mjs/debug.d.ts +6 -0
  16. package/mjs/debug.d.ts.map +1 -0
  17. package/mjs/debug.mjs +9 -0
  18. package/mjs/debug.mjs.map +1 -0
  19. package/mjs/dotnet/GithubNugetRegistryInfo.d.ts +38 -0
  20. package/mjs/dotnet/GithubNugetRegistryInfo.d.ts.map +1 -0
  21. package/mjs/dotnet/GithubNugetRegistryInfo.mjs +43 -0
  22. package/mjs/dotnet/GithubNugetRegistryInfo.mjs.map +1 -0
  23. package/mjs/dotnet/GitlabNugetRegistryInfo.d.ts +62 -0
  24. package/mjs/dotnet/GitlabNugetRegistryInfo.d.ts.map +1 -0
  25. package/mjs/dotnet/GitlabNugetRegistryInfo.mjs +99 -0
  26. package/mjs/dotnet/GitlabNugetRegistryInfo.mjs.map +1 -0
  27. package/mjs/dotnet/IsNextVersionAlreadyPublished.cli.d.ts +2 -0
  28. package/mjs/dotnet/IsNextVersionAlreadyPublished.cli.d.ts.map +1 -0
  29. package/mjs/dotnet/IsNextVersionAlreadyPublished.cli.mjs +41 -0
  30. package/mjs/dotnet/IsNextVersionAlreadyPublished.cli.mjs.map +1 -0
  31. package/mjs/dotnet/MSBuildProject.d.ts +256 -0
  32. package/mjs/dotnet/MSBuildProject.d.ts.map +1 -0
  33. package/mjs/dotnet/MSBuildProject.mjs +447 -0
  34. package/mjs/dotnet/MSBuildProject.mjs.map +1 -0
  35. package/mjs/dotnet/MSBuildProjectProperties.d.ts +170 -0
  36. package/mjs/dotnet/MSBuildProjectProperties.d.ts.map +1 -0
  37. package/mjs/dotnet/MSBuildProjectProperties.mjs +260 -0
  38. package/mjs/dotnet/MSBuildProjectProperties.mjs.map +1 -0
  39. package/mjs/dotnet/NugetProjectProperties.d.ts +379 -0
  40. package/mjs/dotnet/NugetProjectProperties.d.ts.map +1 -0
  41. package/mjs/dotnet/NugetProjectProperties.mjs +577 -0
  42. package/mjs/dotnet/NugetProjectProperties.mjs.map +1 -0
  43. package/mjs/dotnet/NugetRegistryInfo.d.ts +384 -0
  44. package/mjs/dotnet/NugetRegistryInfo.d.ts.map +1 -0
  45. package/mjs/dotnet/NugetRegistryInfo.mjs +752 -0
  46. package/mjs/dotnet/NugetRegistryInfo.mjs.map +1 -0
  47. package/mjs/dotnet/helpers.d.ts +63 -0
  48. package/mjs/dotnet/helpers.d.ts.map +1 -0
  49. package/mjs/dotnet/helpers.mjs +354 -0
  50. package/mjs/dotnet/helpers.mjs.map +1 -0
  51. package/mjs/dotnet/index.d.ts +9 -0
  52. package/mjs/dotnet/index.d.ts.map +1 -0
  53. package/mjs/dotnet/index.mjs +9 -0
  54. package/mjs/dotnet/index.mjs.map +1 -0
  55. package/mjs/dotnet.d.ts +2 -0
  56. package/mjs/dotnet.d.ts.map +1 -0
  57. package/mjs/dotnet.mjs +9 -0
  58. package/mjs/dotnet.mjs.map +1 -0
  59. package/mjs/eslintConfig.d.ts +4 -0
  60. package/mjs/eslintConfig.d.ts.map +1 -0
  61. package/mjs/eslintConfig.mjs +98 -0
  62. package/mjs/eslintConfig.mjs.map +1 -0
  63. package/mjs/index.d.ts +3 -0
  64. package/mjs/index.d.ts.map +1 -0
  65. package/mjs/index.mjs +4 -0
  66. package/mjs/index.mjs.map +1 -0
  67. package/mjs/insertPlugins.d.ts +18 -0
  68. package/mjs/insertPlugins.d.ts.map +1 -0
  69. package/mjs/insertPlugins.mjs +73 -0
  70. package/mjs/insertPlugins.mjs.map +1 -0
  71. package/mjs/semantic-release__commit-analyzer.d.mjs +2 -0
  72. package/mjs/semantic-release__commit-analyzer.d.mjs.map +1 -0
  73. package/mjs/semantic-release__exec.d.mjs +2 -0
  74. package/mjs/semantic-release__exec.d.mjs.map +1 -0
  75. package/mjs/semantic-release__git.d.mjs +2 -0
  76. package/mjs/semantic-release__git.d.mjs.map +1 -0
  77. package/mjs/semantic-release__github.d.mjs +2 -0
  78. package/mjs/semantic-release__github.d.mjs.map +1 -0
  79. package/mjs/semanticReleaseConfig.d.ts +97 -0
  80. package/mjs/semanticReleaseConfig.d.ts.map +1 -0
  81. package/mjs/semanticReleaseConfig.mjs +63 -0
  82. package/mjs/semanticReleaseConfig.mjs.map +1 -0
  83. package/mjs/semanticReleaseConfigDotnet.d.ts +109 -0
  84. package/mjs/semanticReleaseConfigDotnet.d.ts.map +1 -0
  85. package/mjs/semanticReleaseConfigDotnet.mjs +268 -0
  86. package/mjs/semanticReleaseConfigDotnet.mjs.map +1 -0
  87. package/mjs/setupGitPluginSpec.d.ts +22 -0
  88. package/mjs/setupGitPluginSpec.d.ts.map +1 -0
  89. package/mjs/setupGitPluginSpec.mjs +144 -0
  90. package/mjs/setupGitPluginSpec.mjs.map +1 -0
  91. package/mjs/utils/Exact.d.ts +20 -0
  92. package/mjs/utils/Exact.d.ts.map +1 -0
  93. package/mjs/utils/Exact.mjs +75 -0
  94. package/mjs/utils/Exact.mjs.map +1 -0
  95. package/mjs/utils/GracefulRecursion.d.mjs +2 -0
  96. package/mjs/utils/GracefulRecursion.d.mjs.map +1 -0
  97. package/mjs/utils/env.d.ts +24 -0
  98. package/mjs/utils/env.d.ts.map +1 -0
  99. package/mjs/utils/env.mjs +39 -0
  100. package/mjs/utils/env.mjs.map +1 -0
  101. package/mjs/utils/execAsync.d.ts +37 -0
  102. package/mjs/utils/execAsync.d.ts.map +1 -0
  103. package/mjs/utils/execAsync.mjs +59 -0
  104. package/mjs/utils/execAsync.mjs.map +1 -0
  105. package/mjs/utils/miscTypes.d.ts +13 -0
  106. package/mjs/utils/miscTypes.d.ts.map +1 -0
  107. package/mjs/utils/miscTypes.mjs +10 -0
  108. package/mjs/utils/miscTypes.mjs.map +1 -0
  109. package/mjs/utils/reflection/FunctionLike.d.mjs +2 -0
  110. package/mjs/utils/reflection/FunctionLike.d.mjs.map +1 -0
  111. package/mjs/utils/reflection/GetterDescriptor.d.mjs +2 -0
  112. package/mjs/utils/reflection/GetterDescriptor.d.mjs.map +1 -0
  113. package/mjs/utils/reflection/InstancePropertyDescriptorMap.d.mjs +2 -0
  114. package/mjs/utils/reflection/InstancePropertyDescriptorMap.d.mjs.map +1 -0
  115. package/mjs/utils/reflection/InstanceTypeOrSelfPropertyDescriptorMap.d.mjs +2 -0
  116. package/mjs/utils/reflection/InstanceTypeOrSelfPropertyDescriptorMap.d.mjs.map +1 -0
  117. package/mjs/utils/reflection/OwnGetterDescriptorMap.d.mjs +2 -0
  118. package/mjs/utils/reflection/OwnGetterDescriptorMap.d.mjs.map +1 -0
  119. package/mjs/utils/reflection/OwnKeyOf.d.mjs +2 -0
  120. package/mjs/utils/reflection/OwnKeyOf.d.mjs.map +1 -0
  121. package/mjs/utils/reflection/OwnPropertyDescriptorMap.d.mjs +2 -0
  122. package/mjs/utils/reflection/OwnPropertyDescriptorMap.d.mjs.map +1 -0
  123. package/mjs/utils/reflection/PropertyDescriptorMap.d.mjs +2 -0
  124. package/mjs/utils/reflection/PropertyDescriptorMap.d.mjs.map +1 -0
  125. package/mjs/utils/reflection/filterForGetters.d.ts +7 -0
  126. package/mjs/utils/reflection/filterForGetters.d.ts.map +1 -0
  127. package/mjs/utils/reflection/filterForGetters.mjs +27 -0
  128. package/mjs/utils/reflection/filterForGetters.mjs.map +1 -0
  129. package/mjs/utils/reflection/getOwnPropertyDescriptors.d.ts +22 -0
  130. package/mjs/utils/reflection/getOwnPropertyDescriptors.d.ts.map +1 -0
  131. package/mjs/utils/reflection/getOwnPropertyDescriptors.mjs +34 -0
  132. package/mjs/utils/reflection/getOwnPropertyDescriptors.mjs.map +1 -0
  133. package/mjs/utils/reflection/getOwnPropertyDescriptorsRecursively.d.ts +56 -0
  134. package/mjs/utils/reflection/getOwnPropertyDescriptorsRecursively.d.ts.map +1 -0
  135. package/mjs/utils/reflection/getOwnPropertyDescriptorsRecursively.mjs +72 -0
  136. package/mjs/utils/reflection/getOwnPropertyDescriptorsRecursively.mjs.map +1 -0
  137. package/mjs/utils/reflection/getPrototypeChainOf.d.ts +16 -0
  138. package/mjs/utils/reflection/getPrototypeChainOf.d.ts.map +1 -0
  139. package/mjs/utils/reflection/getPrototypeChainOf.mjs +55 -0
  140. package/mjs/utils/reflection/getPrototypeChainOf.mjs.map +1 -0
  141. package/mjs/utils/reflection/getPrototypeOf.d.ts +8 -0
  142. package/mjs/utils/reflection/getPrototypeOf.d.ts.map +1 -0
  143. package/mjs/utils/reflection/getPrototypeOf.mjs +10 -0
  144. package/mjs/utils/reflection/getPrototypeOf.mjs.map +1 -0
  145. package/mjs/utils/reflection/inheritance.d.ts +180 -0
  146. package/mjs/utils/reflection/inheritance.d.ts.map +1 -0
  147. package/mjs/utils/reflection/inheritance.mjs +148 -0
  148. package/mjs/utils/reflection/inheritance.mjs.map +1 -0
  149. package/mjs/utils/reflection/isConstructor.d.ts +17 -0
  150. package/mjs/utils/reflection/isConstructor.d.ts.map +1 -0
  151. package/mjs/utils/reflection/isConstructor.mjs +63 -0
  152. package/mjs/utils/reflection/isConstructor.mjs.map +1 -0
  153. package/mjs/utils/reflection/isGetterDescriptor.d.ts +9 -0
  154. package/mjs/utils/reflection/isGetterDescriptor.d.ts.map +1 -0
  155. package/mjs/utils/reflection/isGetterDescriptor.mjs +12 -0
  156. package/mjs/utils/reflection/isGetterDescriptor.mjs.map +1 -0
  157. package/mjs/utils/reflection/listOwnGetters.d.ts +26 -0
  158. package/mjs/utils/reflection/listOwnGetters.d.ts.map +1 -0
  159. package/mjs/utils/reflection/listOwnGetters.mjs +39 -0
  160. package/mjs/utils/reflection/listOwnGetters.mjs.map +1 -0
  161. package/mjs/utils/reflection.d.ts +18 -0
  162. package/mjs/utils/reflection.d.ts.map +1 -0
  163. package/mjs/utils/reflection.mjs +10 -0
  164. package/mjs/utils/reflection.mjs.map +1 -0
  165. package/package.json +17 -17
  166. package/src/debug.ts +5 -4
  167. package/src/dotnet/GithubNugetRegistryInfo.ts +17 -9
  168. package/src/dotnet/GitlabNugetRegistryInfo.ts +19 -5
  169. package/src/dotnet/IsNextVersionAlreadyPublished.cli.ts +53 -36
  170. package/src/dotnet/MSBuildProject.ts +150 -5
  171. package/src/dotnet/MSBuildProjectProperties.ts +2 -1
  172. package/src/dotnet/NugetProjectProperties.ts +3 -2
  173. package/src/dotnet/NugetRegistryInfo.ts +94 -8
  174. package/src/dotnet/helpers.ts +87 -53
  175. package/src/dotnet/index.ts +8 -0
  176. package/src/dotnet.ts +1 -0
  177. package/src/insertPlugins.ts +116 -0
  178. package/src/semantic-release__exec.d.ts +1 -1
  179. package/src/semanticReleaseConfig.ts +8 -3
  180. package/src/semanticReleaseConfigDotnet.ts +90 -88
  181. package/src/setupGitPluginSpec.ts +4 -1
  182. package/src/tsconfig.json +1 -1
  183. package/src/utils/execAsync.ts +13 -1
  184. package/src/utils/miscTypes.ts +4 -3
  185. package/src/utils/reflection/inheritance.ts +1 -1
  186. package/tsconfig.base.json +54 -0
  187. package/tsconfig.json +22 -0
  188. package/tsconfig.mjs.json +8 -0
@@ -0,0 +1,577 @@
1
+ function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
2
+ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
3
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
4
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
5
+ function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
6
+ function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
7
+ import { type } from 'arktype';
8
+ import { CaseInsensitiveMap } from '../CaseInsensitiveMap.mjs';
9
+ import { tEmptyOrBooleanString, tBooleanString } from '../utils/miscTypes.mjs';
10
+ import '../utils/reflection.mjs';
11
+ import { MSBuildProjectProperties } from './MSBuildProjectProperties.mjs';
12
+ import { getPrototypesChainOf } from '../utils/reflection/getPrototypeChainOf.mjs';
13
+ import { listOwnGetters } from '../utils/reflection/listOwnGetters.mjs';
14
+ const Type_RepositoryType = type('""|"git"|"tfs"');
15
+ const Type_SymbolPackageFormat = type('"symbols.nupkg" | "snupkg"');
16
+
17
+ /**
18
+ * A readonly record of a .csproj or .fsproj with NuGet configuration properties in
19
+ * addition to those specified by {@link MSBuildProjectProperties}. This record
20
+ * should be considered immutable. A new instance should be constructed from MSBuild's evaluation output.
21
+ * @see https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets#pack-target-inputs
22
+ */
23
+ class NugetProjectProperties extends MSBuildProjectProperties {
24
+ // #region private
25
+ _isPackable;
26
+ _suppressDependenciesWhenPacking;
27
+ _packageVersion;
28
+ _packageId;
29
+ _packageDescription;
30
+ _authors;
31
+ _copyright;
32
+ _packageRequireLicenseAcceptance;
33
+ _developmentDependency;
34
+ _packageLicenseExpression;
35
+ _packageLicenseFile;
36
+ _packageProjectUrl;
37
+ _packageIcon;
38
+ _packageReleaseNotes;
39
+ _packageReadmeFile;
40
+ _packageTags;
41
+ _packageOutputPath;
42
+ _includeSymbols;
43
+ _includeSource;
44
+ _packageType;
45
+ _isTool;
46
+ _repositoryUrl;
47
+ _repositoryType;
48
+ _repositoryCommit;
49
+ _symbolPackageFormat;
50
+ _noPackageAnalysis;
51
+ _minClientVersion;
52
+ _includeBuiltOutput;
53
+ _includeContentInPack;
54
+ _buildOutputTargetFolder;
55
+ _contentTargetFolders;
56
+ _nuspecFile;
57
+ _nuspecBasePath;
58
+ _nuspecProperties;
59
+ _title;
60
+ _company;
61
+ _product;
62
+ // #endregion private
63
+
64
+ /**
65
+ * Initialize a readonly record of an MSBuild project's properties, including those related to NuGet.
66
+ * @param msbuildProjectFullPath @inheritdoc {@link NugetProjectProperties.MSBuildProjectFullPath}
67
+ * @param properties The dictionary returned by MSBuild's `-getProperty:propname,...` argument
68
+ */
69
+ constructor(msbuildProjectFullPath, properties) {
70
+ /**
71
+ * names of properties to consume in this constructor instead of its super.
72
+ * These are the names of getters, lowercased.
73
+ */
74
+ const keysToMoveOut = NPPGetterNames.InstanceGetters;
75
+ /** Entries to remove from {@link properties} and apply to `this` after calling `super` */
76
+ const consumables = new CaseInsensitiveMap();
77
+ // move property by key from `properties` to `consumables`. The types of keys and values in `properties` do not matter here.
78
+ for (const key of keysToMoveOut) {
79
+ const value = NugetProjectProperties.getAndForget(properties, key);
80
+ if (value !== undefined) consumables.set(key, value);
81
+ }
82
+
83
+ // Pass the remainder to super
84
+ super(msbuildProjectFullPath, properties);
85
+
86
+ /** convert values to strings */
87
+ for (const _ref of consumables.entries()) {
88
+ var _ref2 = _slicedToArray(_ref, 2);
89
+ const value = _ref2[0];
90
+ const key = _ref2[1];
91
+ if (typeof value !== 'string') consumables.set(key, String(value));
92
+ }
93
+ const _getAndForget = key => NugetProjectProperties.getAndForget(consumables, key);
94
+ let data;
95
+ this._authors = _getAndForget('Authors');
96
+ this._buildOutputTargetFolder = _getAndForget('BuildOutputTargetFolder');
97
+ this._company = _getAndForget('Company');
98
+ this._contentTargetFolders = _getAndForget('ContentTargetFolders');
99
+ this._copyright = _getAndForget('Copyright');
100
+ if (tEmptyOrBooleanString.allows(data = _getAndForget('DevelopmentDependency'))) this._developmentDependency = data;
101
+ if (tBooleanString.allows(data = _getAndForget('IncludeBuiltOutput'))) this._includeBuiltOutput = data;
102
+ if (tBooleanString.allows(data = _getAndForget('IncludeContentInPack'))) this._includeContentInPack = data;
103
+ if (tEmptyOrBooleanString.allows(data = _getAndForget('IncludeSource'))) this._includeSource = data;
104
+ if (tEmptyOrBooleanString.allows(data = _getAndForget('IncludeSymbols'))) this._includeSymbols = data;
105
+ if (tBooleanString.allows(data = _getAndForget('IsPackable'))) this._isPackable = data;
106
+ if (tEmptyOrBooleanString.allows(data = _getAndForget('IsTool'))) this._isTool = data;
107
+ this._minClientVersion = _getAndForget('MinClientVersion');
108
+ if (tEmptyOrBooleanString.allows(data = _getAndForget('NoPackageAnalysis'))) this._noPackageAnalysis = data;
109
+ this._nuspecBasePath = _getAndForget('NuspecBasePath');
110
+ this._nuspecFile = _getAndForget('NuspecFile');
111
+ this._nuspecProperties = _getAndForget('NuspecProperties');
112
+ this._packageDescription = _getAndForget('PackageDescription');
113
+ this._packageIcon = _getAndForget('PackageIcon');
114
+ this._packageId = _getAndForget('PackageId');
115
+ this._packageLicenseExpression = _getAndForget('PackageLicenseExpression');
116
+ this._packageLicenseFile = _getAndForget('PackageLicenseFile');
117
+ this._packageOutputPath = _getAndForget('PackageOutputPath');
118
+ this._packageProjectUrl = _getAndForget('PackageProjectUrl');
119
+ this._packageReadmeFile = _getAndForget('PackageReadmeFile');
120
+ this._packageReleaseNotes = _getAndForget('PackageReleaseNotes');
121
+ if (tBooleanString.allows(data = _getAndForget('PackageRequireLicenseAcceptance'))) this._packageRequireLicenseAcceptance = data;
122
+ this._packageTags = _getAndForget('PackageTags');
123
+ this._packageType = _getAndForget('PackageType');
124
+ this._packageVersion = _getAndForget('PackageVersion');
125
+ this._product = _getAndForget('Product');
126
+ this._repositoryCommit = _getAndForget('RepositoryCommit');
127
+ if (Type_RepositoryType.allows(data = _getAndForget('RepositoryType'))) this._repositoryType = data;
128
+ this._repositoryUrl = _getAndForget('RepositoryUrl');
129
+ if (tBooleanString.allows(data = _getAndForget('SuppressDependenciesWhenPacking'))) this._suppressDependenciesWhenPacking = data;
130
+ if (Type_SymbolPackageFormat.allows(data = _getAndForget('SymbolPackageFormat'))) this._symbolPackageFormat = data;
131
+ this._title = _getAndForget('Title');
132
+ }
133
+
134
+ /**
135
+ * @returns A string-formatted boolean. If 'false', the project's `Pack`
136
+ * Target (if available) will no-op.
137
+ *
138
+ * Default: `"true"`
139
+ */
140
+ get IsPackable() {
141
+ return this._isPackable ??= 'true';
142
+ }
143
+
144
+ /**
145
+ * @returns `"true"` or `"false"`. If "true", the package's dependencies are
146
+ * excluded from the generated NuGet package.
147
+ *
148
+ * Default: `"false"`
149
+ */
150
+ get SuppressDependenciesWhenPacking() {
151
+ return this._suppressDependenciesWhenPacking ??= 'false';
152
+ }
153
+
154
+ /**
155
+ * @returns A semver-compatible version number in the form
156
+ * Major.Minor.Patch[-Suffix], where -Suffix identifies prerelease versions.
157
+ *
158
+ * Default: {@link Version}
159
+ * @example "1.0.0", "1.0.0-beta", "1.0.0-beta-00345"
160
+ */
161
+ get PackageVersion() {
162
+ return this._packageVersion ??= this.Version;
163
+ }
164
+
165
+ /**
166
+ * @returns The ID of the resulting NuGet package.
167
+ *
168
+ * Default: {@link AssemblyName}
169
+ */
170
+ get PackageId() {
171
+ return this._packageId ??= this.AssemblyName;
172
+ }
173
+
174
+ /**
175
+ * @returns A long description of the package for UI display.
176
+ *
177
+ * Default: {@link Description}
178
+ */
179
+ get PackageDescription() {
180
+ return this._packageDescription ??= this.Description;
181
+ }
182
+
183
+ /**
184
+ * @returns A semicolon-separated list of the package's authors, matching the
185
+ * profile names on nuget.org. These are displayed in the NuGet Gallery on
186
+ * nuget.org and are used to cross-reference packages by the same authors.
187
+ *
188
+ * Default: {@link AssemblyName `AssemblyName`}
189
+ */
190
+ get Authors() {
191
+ return this._authors ??= this.AssemblyName;
192
+ }
193
+
194
+ /**
195
+ * @returns Copyright details for the package.
196
+ *
197
+ * Default: `''`
198
+ */
199
+ get Copyright() {
200
+ return this._copyright ??= '';
201
+ }
202
+
203
+ /**
204
+ * @returns A string-formatted boolean. If `"true"`, the client must prompt the
205
+ * consumer to accept the package license before installing the package.
206
+ *
207
+ * Default: `"false"`
208
+ */
209
+ get PackageRequireLicenseAcceptance() {
210
+ return this._packageRequireLicenseAcceptance ??= 'false';
211
+ }
212
+
213
+ /**
214
+ * This boolean only affects the package created from the project.
215
+ * @see
216
+ * {@link https://github.com/NuGet/Home/wiki/DevelopmentDependency-support-for-PackageReference DevelopmentDependency support for PackageReference}
217
+ * @returns A string-formatted boolean. If `"true"`, the package is marked as
218
+ * a development-only dependency and is prevented from being included as a
219
+ * dependency in other packages. With PackageReference (NuGet 4.8+), this flag
220
+ * also means that compile-time assets are excluded from compilation.
221
+ *
222
+ * Default: `''` (`false`-y)
223
+ */
224
+ get DevelopmentDependency() {
225
+ return this._developmentDependency ??= '';
226
+ }
227
+
228
+ /**
229
+ * @returns The {@link https://spdx.org/licenses/ SPDX license identifier} or
230
+ * expression.
231
+ *
232
+ * Default: `''`
233
+ * @see
234
+ * {@link https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets#packing-a-license-expression-or-a-license-file Packing a license expression or a license file}
235
+ * @example "Apache-2.0"
236
+ */
237
+ get PackageLicenseExpression() {
238
+ return this._packageLicenseExpression ??= '';
239
+ }
240
+
241
+ /**
242
+ * @returns The path to a license file within the package if you're using a
243
+ * custom license or a license that hasn't been assigned an SPDX identifier.
244
+ *
245
+ * Default: `''`
246
+ */
247
+ get PackageLicenseFile() {
248
+ return this._packageLicenseFile ??= '';
249
+ }
250
+
251
+ /**
252
+ * @returns The package's project URL.
253
+ *
254
+ * Default: `''`
255
+ */
256
+ get PackageProjectUrl() {
257
+ return this._packageProjectUrl ??= '';
258
+ }
259
+
260
+ /**
261
+ * @returns The package icon path, relative to the root of the package.
262
+ *
263
+ * Default: `''`
264
+ * @description You must pack the referenced icon image file. By default, it
265
+ * is not packed.
266
+ * @see
267
+ * {@link https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets#packing-an-icon-image-file Packing an icon image file},
268
+ * {@link https://learn.microsoft.com/en-us/nuget/reference/nuspec#icon icon metadata}
269
+ */
270
+ get PackageIcon() {
271
+ return this._packageIcon ??= '';
272
+ }
273
+
274
+ /**
275
+ * @returns Release notes for the package.
276
+ *
277
+ * Default: `''`
278
+ */
279
+ get PackageReleaseNotes() {
280
+ return this._packageReleaseNotes ??= '';
281
+ }
282
+
283
+ /**
284
+ * @returns The path of the package's README file relative to the package's
285
+ * root.
286
+ *
287
+ * Default: `''`
288
+ * @description You must pack the referenced readme file. By default, it is
289
+ * not packed.
290
+ */
291
+ get PackageReadmeFile() {
292
+ return this._packageReadmeFile ??= '';
293
+ }
294
+
295
+ /**
296
+ * @returns A semicolon-delimited list of tags that designates the package.
297
+ *
298
+ * Default : `''`
299
+ */
300
+ get PackageTags() {
301
+ return this._packageTags ??= '';
302
+ }
303
+
304
+ /**
305
+ * @returns A relative or absolute path determining the where the packed
306
+ * package will be dropped.
307
+ *
308
+ * Default: {@link OutputPath}
309
+ */
310
+ get PackageOutputPath() {
311
+ return this._packageOutputPath ??= this.OutputPath;
312
+ }
313
+
314
+ /**
315
+ * @returns A string-formatted boolean indicating whether the package should
316
+ * create an additional symbols package when the project is packed. The
317
+ * symbols package's format is controlled by the `SymbolPackageFormat`
318
+ * property.
319
+ *
320
+ * Default: `''` (false-y)
321
+ * @description When using `MSBuild -t:pack -p:IncludeSymbols=true`, the
322
+ * corresponding .pdb files are copied along with other output files (.dll,
323
+ * .exe, .winmd, .xml, .json, .pri). Note that setting `IncludeSymbols=true`
324
+ * creates a regular package and a symbols package.
325
+ * @see
326
+ * {@link https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets#includesymbols IncludeSymbols}
327
+ */
328
+ get IncludeSymbols() {
329
+ return this._includeSymbols ??= '';
330
+ }
331
+
332
+ /**
333
+ * @returns A string-formatted boolean indicating whether the pack process
334
+ * should create a source package. The source package contains the library's
335
+ * source code as well as PDB files. Source files are put under the
336
+ * `src/ProjectName` directory in the resulting package file.
337
+ *
338
+ * Default: `''` (false-y)
339
+ * @see
340
+ * {@link https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets#includesource IncludeSource}
341
+ */
342
+ get IncludeSource() {
343
+ return this._includeSource ??= '';
344
+ }
345
+
346
+ /**
347
+ * @returns A semicolon-separated list of tags indicating the package's
348
+ * intended use. Custom types are allowed, but cannot be installed via Visual
349
+ * Studio nor nuget.exe. See https://github.com/NuGet/Home/issues/10468.
350
+ *
351
+ * Package types can be version e.g. `PackageType1, 1.0.0.0;PackageType2`
352
+ *
353
+ * Default: `''`
354
+ * @example "Dependency ", "DotnetTool", "MSBuildSdk", "Template"
355
+ * @see {@link https://learn.microsoft.com/en-us/nuget/create-packages/set-package-type?tabs=dotnet Set a NuGet package type}
356
+ */
357
+ get PackageType() {
358
+ return this._packageType ??= '';
359
+ }
360
+
361
+ /**
362
+ * @returns A string-formatted boolean specifying whether all output files are
363
+ * copied to the *tools* folder instead of the *lib* folder.
364
+ *
365
+ * Default: `''` (false-y)
366
+ * @see
367
+ * {@link https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets#istool IsTool}
368
+ */
369
+ get IsTool() {
370
+ return this._isTool ??= '';
371
+ }
372
+
373
+ /**
374
+ * @returns The repository URL used to clone or retrieve source code.
375
+ *
376
+ * Default: `''`
377
+ * @example "https://github.com/NuGet/NuGet.Client.git".
378
+ */
379
+ get RepositoryUrl() {
380
+ return this._repositoryUrl ??= '';
381
+ }
382
+
383
+ /**
384
+ * @returns The repository type.
385
+ *
386
+ * Default: `''`
387
+ * @example "git", "fts"
388
+ */
389
+ get RepositoryType() {
390
+ return this._repositoryType ??= '';
391
+ }
392
+
393
+ /**
394
+ * @returns The (optional) repository commit or changeset to indicate which
395
+ * source the package was built against. {@link RepositoryUrl} must also be
396
+ * specified for this property to be included.
397
+ *
398
+ * Default: `''`
399
+ * @description This is evaluated only during the "Pack" and "Publish"
400
+ * Targets. If using nuget.exe or Visual Studio, NuGet 4.7.0 or later is
401
+ * required.
402
+ * @example "0e4d1b598f350b3dc675018d539114d1328189ef"
403
+ */
404
+ get RepositoryCommit() {
405
+ return this._repositoryCommit ??= '';
406
+ }
407
+
408
+ /**
409
+ * @returns A string specifying the format of the symbols package. If
410
+ * "symbols.nupkg", a legacy symbols package is created with a .symbols.nupkg
411
+ * extension containing PDBs, DLLs, and other output files. If "snupkg", a
412
+ * snupkg symbol package is created containing the portable PDBs. The default
413
+ * is "symbols.nupkg".
414
+ *
415
+ * Default: "symbols.nupkg"
416
+ * @example "symbols.nupkg", "snupkg"
417
+ */
418
+ get SymbolPackageFormat() {
419
+ return this._symbolPackageFormat ??= 'symbols.nupkg';
420
+ }
421
+
422
+ /**
423
+ * @returns A string-formatted boolean specifying that `pack` should not run
424
+ * package analysis after building the package.
425
+ *
426
+ * Default: `''` (false-y)
427
+ */
428
+ get NoPackageAnalysis() {
429
+ return this._noPackageAnalysis ??= '';
430
+ }
431
+
432
+ /**
433
+ * @returns A string specifying the minimum version of the NuGet client that
434
+ * can install this package, enforced by nuget.exe and the Visual Studio
435
+ * Package Manager.
436
+ *
437
+ * Default: `''`
438
+ */
439
+ get MinClientVersion() {
440
+ return this._minClientVersion ??= '';
441
+ }
442
+
443
+ /**
444
+ * @returns A string-formatted boolean value specifying whether the build
445
+ * output assemblies should be packed into the .nupkg file or not.
446
+ *
447
+ * Default: `"true"`
448
+ */
449
+ get IncludeBuildOutput() {
450
+ return this._includeBuiltOutput ??= 'true';
451
+ }
452
+
453
+ /**
454
+ * @returns A string-formatted boolean specifying whether any items that have
455
+ * a type of Content are included in the resulting package automatically.
456
+ *
457
+ * Default: `"true"`
458
+ */
459
+ get IncludeContentInPack() {
460
+ return this._includeContentInPack ??= 'true';
461
+ }
462
+
463
+ /**
464
+ * @returns The output directory of the output assemblies relative to the root
465
+ * of the package. The output assemblies (and other output files) are copied
466
+ * into their respective framework folders.
467
+ *
468
+ * Default: `''`
469
+ * @see
470
+ * {@link https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets#output-assemblies Output assemblies}
471
+ */
472
+ get BuildOutputTargetFolder() {
473
+ return this._buildOutputTargetFolder ??= '';
474
+ }
475
+
476
+ /**
477
+ * @returns A semicolon-separated list of default locations of where all the
478
+ * content files should go if `PackagePath` is not specified for them.
479
+ *
480
+ * Default: `"content;contentFiles"`
481
+ * @see
482
+ * {@link https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets#including-content-in-a-package Including content in a package}
483
+ */
484
+ get ContentTargetFolders() {
485
+ return this._contentTargetFolders ??= 'content;contentFiles';
486
+ }
487
+
488
+ /**
489
+ * @returns The relative or absolute path to the `*.nuspec` file being used
490
+ * for packing. If specified, it's used **exclusively** for packaging
491
+ * information, and any information in the projects is not used.
492
+ *
493
+ * Default: `''`
494
+ * @see
495
+ * {@link https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets#packing-using-a-nuspec-file Packing using a .nuspec}
496
+ */
497
+ get NuspecFile() {
498
+ return this._nuspecFile ??= '';
499
+ }
500
+
501
+ /**
502
+ * @returns The base path for the *.nuspec* file.
503
+ *
504
+ * Default: `''`
505
+ * @see
506
+ * {@link https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets#packing-using-a-nuspec-file Packing using a .nuspec}
507
+ */
508
+ get NuspecBasePath() {
509
+ return this._nuspecBasePath ??= '';
510
+ }
511
+
512
+ /**
513
+ * @returns A semicolon-separated list of key=value pairs.
514
+ *
515
+ * Default: `''`
516
+ * @see
517
+ * {@link https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets#packing-using-a-nuspec-file Packing using a .nuspec}
518
+ */
519
+ get NuspecProperties() {
520
+ return this._nuspecProperties ??= '';
521
+ }
522
+
523
+ /**
524
+ * @returns A human-friendly title of the package, typically used in UI displays as
525
+ * on nuget.org and the Package Manager in Visual Studio.
526
+ * Default: {@link PackageId}
527
+ */
528
+ get Title() {
529
+ return this._title ??= this.PackageId;
530
+ }
531
+
532
+ /**
533
+ * @returns Company name or information.
534
+ *
535
+ * Default: {@link Authors}
536
+ */
537
+ get Company() {
538
+ return this._company ??= this.Authors;
539
+ }
540
+
541
+ /**
542
+ * @returns Product name or information.
543
+ *
544
+ * Default: {@link AssemblyName}
545
+ */
546
+ get Product() {
547
+ return this._product ??= this.AssemblyName;
548
+ }
549
+ }
550
+ // eslint-disable-next-line @typescript-eslint/no-extraneous-class
551
+ class NPPGetterNames {
552
+ static _prototypeChain;
553
+ static get PrototypeChain() {
554
+ return this._prototypeChain ??= getPrototypesChainOf(NugetProjectProperties, 'classes');
555
+ }
556
+ static _instanceGetters;
557
+ static _instanceGettersRecursive;
558
+ static _StaticGetters;
559
+ static _StaticGettersRecursive;
560
+ static get InstanceGetters() {
561
+ return this._instanceGetters ??= listOwnGetters(NugetProjectProperties, 'Instance');
562
+ }
563
+ static get InstanceGettersRecursive() {
564
+ return this._instanceGettersRecursive ??= this.PrototypeChain.flatMap(proto => listOwnGetters(proto, 'Instance'));
565
+ }
566
+ static get StaticGetters() {
567
+ return this._StaticGetters ??= listOwnGetters(NugetProjectProperties, 'Static');
568
+ }
569
+ static get StaticGettersRecursive() {
570
+ return this._StaticGettersRecursive ??= this.PrototypeChain.flatMap(proto => listOwnGetters(proto, 'Static'));
571
+ }
572
+ }
573
+
574
+ /** @module NugetProjectProperties */
575
+
576
+ export { NPPGetterNames, NugetProjectProperties };
577
+ //# sourceMappingURL=NugetProjectProperties.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NugetProjectProperties.mjs","sources":["../../src/dotnet/NugetProjectProperties.ts"],"sourcesContent":null,"names":[],"mappings":"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"}