@halospv3/hce.shared-config 3.4.2 → 3.4.3-develop.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dotnet/GitVersion.yml +47 -11
- package/dotnet/GitVersion6.0.yml +46 -11
- package/dotnet/HCE.Shared.slnx +6 -0
- package/dotnet/HCE.Shared.targets +5 -5
- package/mjs/semanticReleaseConfigDotnet.d.ts +9 -6
- package/mjs/semanticReleaseConfigDotnet.d.ts.map +1 -1
- package/mjs/semanticReleaseConfigDotnet.mjs +11 -6
- package/mjs/semanticReleaseConfigDotnet.mjs.map +1 -1
- package/package.json +1 -1
- package/src/semanticReleaseConfigDotnet.ts +10 -6
- package/dotnet/HCE.Shared.sln +0 -34
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.4.3-develop.1](https://github.com/HaloSPV3/HCE.Shared/compare/v3.4.2...v3.4.3-develop.1) (2026-02-10)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **dotnet.GitVersion:** rework GitVersion configs ([2dc7f43](https://github.com/HaloSPV3/HCE.Shared/commit/2dc7f43f4d46a7da1f135eef40ab53f5840338cb))
|
|
6
|
+
* **dotnet:** use MSBuildThisFileDirectory instead of ./ ([b799104](https://github.com/HaloSPV3/HCE.Shared/commit/b7991044cb87f9fd9d8edb8c4e01038364828f08))
|
|
7
|
+
|
|
1
8
|
## [3.4.2](https://github.com/HaloSPV3/HCE.Shared/compare/v3.4.1...v3.4.2) (2026-02-08)
|
|
2
9
|
|
|
3
10
|
### Bug Fixes
|
package/dotnet/GitVersion.yml
CHANGED
|
@@ -1,23 +1,59 @@
|
|
|
1
1
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/GitTools/GitVersion/main/schemas/5.12/GitVersion.configuration.json
|
|
2
2
|
# https://gitversion.net/docs/reference/configuration
|
|
3
|
-
|
|
4
|
-
#
|
|
3
|
+
|
|
4
|
+
# # Conventional Commits
|
|
5
|
+
# See https://www.npmjs.com/package/@commitlint/config-conventional
|
|
6
|
+
# Note: Do not use "/" in scopes' names. "/" and "," are delimiters e.g.
|
|
7
|
+
# `build(deps, deps-dev): bump dependencies`
|
|
8
|
+
#
|
|
9
|
+
# "!:" in the header -or- "BREAKING CHANGE:" in the footer.
|
|
5
10
|
# e.g. refactor!: remove or change a public API symbol
|
|
6
|
-
major-version-bump-message:
|
|
11
|
+
major-version-bump-message: ^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\([\w\s-,/\\]*\))?(!:|:.*\n\n((.+\n)+\n)?BREAKING CHANGE:\s.+)
|
|
7
12
|
# e.g. "feat: add awesome thing", "feat(App.Core): add thing to App.Core's API"
|
|
8
|
-
minor-version-bump-message:
|
|
13
|
+
minor-version-bump-message: ^(feat)(\([\w\s-]*\))?(:)
|
|
9
14
|
# e.g. "Revert", "Reverts", "revert:", "fix:", or "perf:".
|
|
10
|
-
patch-version-bump-message:
|
|
11
|
-
# # Angular Commit Convention
|
|
12
|
-
# In addition to the rules at https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular#conventional-changelog-angular...
|
|
13
|
-
# - Scopes are optional (but recommended) and multiple can be specified
|
|
14
|
-
# e.g. "fix(App.Core, App.CLI): ".
|
|
15
|
-
# - Do not use "/" in scopes' names. "/" and "," are delimiters.
|
|
16
|
-
#
|
|
15
|
+
patch-version-bump-message: ^(Reverts? )|(fix|perf|revert)(\([\w\s-]*\))?(:)
|
|
17
16
|
# # Release/Version Rules
|
|
17
|
+
# https://semantic-release.gitbook.io/semantic-release/recipes/release-workflow/maintenance-releases#publishing-maintenance-releases
|
|
18
18
|
# https://github.com/semantic-release/commit-analyzer/blob/master/lib/default-release-rules.js
|
|
19
19
|
# { breaking: true, release: "major" }
|
|
20
20
|
# { type: "feat", release: "minor" }
|
|
21
21
|
# { revert: true, release: "patch" }
|
|
22
22
|
# { type: "fix", release: "patch" }
|
|
23
23
|
# { type: "perf", release: "patch" }
|
|
24
|
+
# file://./../src/semanticReleaseConfig.ts#L64-L67
|
|
25
|
+
# preset: 'conventionalcommits',
|
|
26
|
+
# branches: [
|
|
27
|
+
# 'main',
|
|
28
|
+
# { name: 'develop', channel: 'develop', prerelease: true },
|
|
29
|
+
# ]
|
|
30
|
+
|
|
31
|
+
branches:
|
|
32
|
+
develop:
|
|
33
|
+
increment: None
|
|
34
|
+
prevent-increment:
|
|
35
|
+
when-current-commit-tagged: true
|
|
36
|
+
main:
|
|
37
|
+
increment: None
|
|
38
|
+
release:
|
|
39
|
+
increment: None
|
|
40
|
+
prevent-increment:
|
|
41
|
+
when-current-commit-tagged: true
|
|
42
|
+
feature:
|
|
43
|
+
increment: None
|
|
44
|
+
prevent-increment:
|
|
45
|
+
when-current-commit-tagged: true
|
|
46
|
+
regex: ^feat(ures?)?[\/-](?<BranchName>.+)
|
|
47
|
+
pull-request:
|
|
48
|
+
increment: None
|
|
49
|
+
prevent-increment:
|
|
50
|
+
when-current-commit-tagged: true
|
|
51
|
+
hotfix:
|
|
52
|
+
increment: None
|
|
53
|
+
prevent-increment:
|
|
54
|
+
when-current-commit-tagged: true
|
|
55
|
+
support:
|
|
56
|
+
increment: None
|
|
57
|
+
unknown:
|
|
58
|
+
increment: None
|
|
59
|
+
|
package/dotnet/GitVersion6.0.yml
CHANGED
|
@@ -1,23 +1,58 @@
|
|
|
1
1
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/GitTools/GitVersion/main/schemas/6.0/GitVersion.configuration.json
|
|
2
2
|
# https://gitversion.net/docs/reference/configuration
|
|
3
|
-
|
|
4
|
-
#
|
|
3
|
+
|
|
4
|
+
# # Conventional Commits
|
|
5
|
+
# See https://www.npmjs.com/package/@commitlint/config-conventional
|
|
6
|
+
# Note: Do not use "/" in scopes' names. "/" and "," are delimiters e.g.
|
|
7
|
+
# `build(deps, deps-dev): bump dependencies`
|
|
8
|
+
#
|
|
9
|
+
# "!:" in the header -or- "BREAKING CHANGE:" in the footer.
|
|
5
10
|
# e.g. refactor!: remove or change a public API symbol
|
|
6
|
-
major-version-bump-message:
|
|
11
|
+
major-version-bump-message: ^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\([\w\s-,/\\]*\))?(!:|:.*\n\n((.+\n)+\n)?BREAKING CHANGE:\s.+)
|
|
7
12
|
# e.g. "feat: add awesome thing", "feat(App.Core): add thing to App.Core's API"
|
|
8
|
-
minor-version-bump-message:
|
|
13
|
+
minor-version-bump-message: ^(feat)(\([\w\s-]*\))?(:)
|
|
9
14
|
# e.g. "Revert", "Reverts", "revert:", "fix:", or "perf:".
|
|
10
|
-
patch-version-bump-message:
|
|
11
|
-
# # Angular Commit Convention
|
|
12
|
-
# In addition to the rules at https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular#conventional-changelog-angular...
|
|
13
|
-
# - Scopes are optional (but recommended) and multiple can be specified
|
|
14
|
-
# e.g. "fix(App.Core, App.CLI): ".
|
|
15
|
-
# - Do not use "/" in scopes' names. "/" and "," are delimiters.
|
|
16
|
-
#
|
|
15
|
+
patch-version-bump-message: ^(Reverts? )|(fix|perf|revert)(\([\w\s-]*\))?(:)
|
|
17
16
|
# # Release/Version Rules
|
|
17
|
+
# https://semantic-release.gitbook.io/semantic-release/recipes/release-workflow/maintenance-releases#publishing-maintenance-releases
|
|
18
18
|
# https://github.com/semantic-release/commit-analyzer/blob/master/lib/default-release-rules.js
|
|
19
19
|
# { breaking: true, release: "major" }
|
|
20
20
|
# { type: "feat", release: "minor" }
|
|
21
21
|
# { revert: true, release: "patch" }
|
|
22
22
|
# { type: "fix", release: "patch" }
|
|
23
23
|
# { type: "perf", release: "patch" }
|
|
24
|
+
# file://./../src/semanticReleaseConfig.ts#L64-L67
|
|
25
|
+
# preset: 'conventionalcommits',
|
|
26
|
+
# branches: [
|
|
27
|
+
# 'main',
|
|
28
|
+
# { name: 'develop', channel: 'develop', prerelease: true },
|
|
29
|
+
# ]
|
|
30
|
+
|
|
31
|
+
branches:
|
|
32
|
+
develop:
|
|
33
|
+
increment: None
|
|
34
|
+
prevent-increment:
|
|
35
|
+
when-current-commit-tagged: true
|
|
36
|
+
main:
|
|
37
|
+
increment: None
|
|
38
|
+
release:
|
|
39
|
+
increment: None
|
|
40
|
+
prevent-increment:
|
|
41
|
+
when-current-commit-tagged: true
|
|
42
|
+
feature:
|
|
43
|
+
increment: None
|
|
44
|
+
prevent-increment:
|
|
45
|
+
when-current-commit-tagged: true
|
|
46
|
+
regex: ^feat(ures?)?[\/-](?<BranchName>.+)
|
|
47
|
+
pull-request:
|
|
48
|
+
increment: None
|
|
49
|
+
prevent-increment:
|
|
50
|
+
when-current-commit-tagged: true
|
|
51
|
+
hotfix:
|
|
52
|
+
increment: None
|
|
53
|
+
prevent-increment:
|
|
54
|
+
when-current-commit-tagged: true
|
|
55
|
+
support:
|
|
56
|
+
increment: None
|
|
57
|
+
unknown:
|
|
58
|
+
increment: None
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
Import all other .props and .targets in this directory
|
|
3
3
|
If you import this, you don't need to import anything else. -->
|
|
4
4
|
<Project Label="All HCE.Shared Properties and Targets">
|
|
5
|
-
<Import Project="
|
|
6
|
-
<Import Project="
|
|
7
|
-
<Import Project="
|
|
5
|
+
<Import Project="$(MSBuildThisFileDirectory)ExecNupkgDeterministicator.targets" />
|
|
6
|
+
<Import Project="$(MSBuildThisFileDirectory)HCE.Shared.CI.props" />
|
|
7
|
+
<Import Project="$(MSBuildThisFileDirectory)ZipPublishDir.targets" />
|
|
8
8
|
<!-- Must be explicitly targeted via 'dotnet msbuild project.csproj -t:PublishAll'. May lead to incompatibility errors -->
|
|
9
|
-
<Import Project="
|
|
9
|
+
<Import Project="$(MSBuildThisFileDirectory)PublishAll.targets" />
|
|
10
10
|
<!-- Auto-runs after 'dotnet build' if (TargetFramework != '') AND (RuntimeIdentifier == '') AND (RuntimeIdentifiers != '');
|
|
11
11
|
The SDK iterates through TargetFrameworks for each TFM. We iterate each TFM's RIDs.
|
|
12
12
|
Intended for ensuring RID-dependent build permutations are successful before attempting PublishAll. -->
|
|
13
|
-
<Import Project="
|
|
13
|
+
<Import Project="$(MSBuildThisFileDirectory)BuildEachRID.targets" />
|
|
14
14
|
</Project>
|
|
@@ -5,16 +5,19 @@
|
|
|
5
5
|
* extends {@link baseConfig }
|
|
6
6
|
*
|
|
7
7
|
* <-- TABLE OF CONTENTS -->
|
|
8
|
-
* - configureDotnetRelease
|
|
9
|
-
* - Insert-Edit Plugins
|
|
10
|
-
* - Append Plugins
|
|
11
8
|
*
|
|
9
|
+
* EASY: {@link getConfig}
|
|
10
|
+
* Just provide the paths of the project file(s) and keep your API tokens ready.
|
|
11
|
+
* ADVANCED: {@link SemanticReleaseConfigDotnet}
|
|
12
|
+
* Allows for a hands-on customization if {@link getConfig} doesn't meet your needs.
|
|
13
|
+
* Use a copy of {@link getConfig} as the starting point of a new function and make changes from there.
|
|
14
|
+
* - {@link SemanticReleaseConfigDotnet#splicePlugin splicePlugin (insert/edit plugins)}
|
|
15
|
+
* - {@link SemanticReleaseConfigDotnet#setupDotnetCommands setupDotnetCommands}
|
|
16
|
+
* - {@link SemanticReleaseConfigDotnet#getTokenTestingCommands getTokenTestingCommands}
|
|
12
17
|
*/
|
|
13
18
|
import type { Options } from 'semantic-release';
|
|
14
19
|
import { NugetRegistryInfo } from './dotnet/NugetRegistryInfo.js';
|
|
15
20
|
import { MSBuildProject } from './dotnet/MSBuildProject.js';
|
|
16
|
-
/**
|
|
17
|
-
*/
|
|
18
21
|
export declare class SemanticReleaseConfigDotnet {
|
|
19
22
|
private readonly options;
|
|
20
23
|
private readonly _projectsToPublish;
|
|
@@ -51,6 +54,7 @@ export declare class SemanticReleaseConfigDotnet {
|
|
|
51
54
|
get ProjectsToPublish(): string[] | MSBuildProject[];
|
|
52
55
|
get ProjectsToPackAndPush(): string[] | NugetRegistryInfo[];
|
|
53
56
|
get EvaluatedProjects(): MSBuildProject[];
|
|
57
|
+
/** @deprecated Superseded by {@link splicePlugin} */
|
|
54
58
|
insertPlugin(afterPluginsIDs: string[], insertPluginIDs: string[], beforePluginsIDs: string[]): void;
|
|
55
59
|
/**
|
|
56
60
|
* generate dotnet commands for \@semantic-release/exec, appending commands with ' && ' when necessary.
|
|
@@ -64,7 +68,6 @@ export declare class SemanticReleaseConfigDotnet {
|
|
|
64
68
|
setupDotnetCommands(): Promise<void>;
|
|
65
69
|
/**
|
|
66
70
|
* Insert a plugin into the plugins array.
|
|
67
|
-
* @deprecated EXPERIMENTAL: needs thorough tests implemented before use in production!
|
|
68
71
|
* @param insertAfterPluginIDs Plugins which should appear BEFORE
|
|
69
72
|
* {@link insertPluginIDs}.
|
|
70
73
|
* @param insertPluginIDs The plugin(s) to insert into the plugins array.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"semanticReleaseConfigDotnet.d.ts","sourceRoot":"","sources":["../src/semanticReleaseConfigDotnet.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"semanticReleaseConfigDotnet.d.ts","sourceRoot":"","sources":["../src/semanticReleaseConfigDotnet.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAGH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAMhD,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAQ5D,qBAAa,2BAA2B;IACtC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAwB;IAChD,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAA8B;IACjE,OAAO,CAAC,sBAAsB,CAAiC;IAC/D,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAmB;IAEtD;;;;;;;;;;;;;;;;;;;;;;;;;;OA0BG;gBAED,iBAAiB,EAAE,MAAM,EAAE,GAAG,cAAc,EAAE,EAC9C,qBAAqB,EAAE,MAAM,EAAE,GAAG,iBAAiB,EAAE;IAwCvD,IAAI,iBAAiB,IAAI,MAAM,EAAE,GAAG,cAAc,EAAE,CAEnD;IAED,IAAI,qBAAqB,IAAI,MAAM,EAAE,GAAG,iBAAiB,EAAE,CAE1D;IAED,IAAI,iBAAiB,IAAI,cAAc,EAAE,CAExC;IAGD,qDAAqD;IACrD,YAAY,CACV,eAAe,EAAE,MAAM,EAAE,EACzB,eAAe,EAAE,MAAM,EAAE,EACzB,gBAAgB,EAAE,MAAM,EAAE,GACzB,IAAI;IAIP;;;;;;;;OAQG;IACG,mBAAmB,IAAI,OAAO,CAAC,IAAI,CAAC;IA2F1C;;;;;;;OAOG;IACH,YAAY,CACV,oBAAoB,EAAE,MAAM,EAAE,EAC9B,eAAe,EAAE,MAAM,EAAE,EACzB,sBAAsB,EAAE,MAAM,EAAE,GAC/B,IAAI;cAmDS,uBAAuB,IAAI,OAAO,CAAC,MAAM,CAAC;IAqC1D,SAAS,IAAI,OAAO;CAGrB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,wBAAsB,SAAS,CAC7B,iBAAiB,EAAE,MAAM,EAAE,GAAG,cAAc,EAAE,EAC9C,qBAAqB,CAAC,EAAE,MAAM,EAAE,GAAG,iBAAiB,EAAE,GACrD,OAAO,CAAC,OAAO,CAAC,CAqDlB;AAED;;GAEG"}
|
|
@@ -14,14 +14,17 @@ import { insertPlugin } from './insertPlugins.mjs';
|
|
|
14
14
|
* extends {@link baseConfig }
|
|
15
15
|
*
|
|
16
16
|
* <-- TABLE OF CONTENTS -->
|
|
17
|
-
* - configureDotnetRelease
|
|
18
|
-
* - Insert-Edit Plugins
|
|
19
|
-
* - Append Plugins
|
|
20
17
|
*
|
|
18
|
+
* EASY: {@link getConfig}
|
|
19
|
+
* Just provide the paths of the project file(s) and keep your API tokens ready.
|
|
20
|
+
* ADVANCED: {@link SemanticReleaseConfigDotnet}
|
|
21
|
+
* Allows for a hands-on customization if {@link getConfig} doesn't meet your needs.
|
|
22
|
+
* Use a copy of {@link getConfig} as the starting point of a new function and make changes from there.
|
|
23
|
+
* - {@link SemanticReleaseConfigDotnet#splicePlugin splicePlugin (insert/edit plugins)}
|
|
24
|
+
* - {@link SemanticReleaseConfigDotnet#setupDotnetCommands setupDotnetCommands}
|
|
25
|
+
* - {@link SemanticReleaseConfigDotnet#getTokenTestingCommands getTokenTestingCommands}
|
|
21
26
|
*/
|
|
22
27
|
|
|
23
|
-
/**
|
|
24
|
-
*/
|
|
25
28
|
class SemanticReleaseConfigDotnet {
|
|
26
29
|
options;
|
|
27
30
|
_projectsToPublish;
|
|
@@ -90,6 +93,9 @@ class SemanticReleaseConfigDotnet {
|
|
|
90
93
|
get EvaluatedProjects() {
|
|
91
94
|
return this._evaluatedProjects;
|
|
92
95
|
}
|
|
96
|
+
|
|
97
|
+
// eslint-disable-next-line jsdoc/require-param
|
|
98
|
+
/** @deprecated Superseded by {@link splicePlugin} */
|
|
93
99
|
insertPlugin(afterPluginsIDs, insertPluginIDs, beforePluginsIDs) {
|
|
94
100
|
this.options.plugins = insertPlugin(this.options.plugins, afterPluginsIDs, insertPluginIDs, beforePluginsIDs);
|
|
95
101
|
}
|
|
@@ -152,7 +158,6 @@ Appending it to the end of the array...This may cause an unexpected order of ope
|
|
|
152
158
|
|
|
153
159
|
/**
|
|
154
160
|
* Insert a plugin into the plugins array.
|
|
155
|
-
* @deprecated EXPERIMENTAL: needs thorough tests implemented before use in production!
|
|
156
161
|
* @param insertAfterPluginIDs Plugins which should appear BEFORE
|
|
157
162
|
* {@link insertPluginIDs}.
|
|
158
163
|
* @param insertPluginIDs The plugin(s) to insert into the plugins array.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"semanticReleaseConfigDotnet.mjs","sources":["../src/semanticReleaseConfigDotnet.ts"],"sourcesContent":null,"names":["debug"],"mappings":";;;;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA
|
|
1
|
+
{"version":3,"file":"semanticReleaseConfigDotnet.mjs","sources":["../src/semanticReleaseConfigDotnet.ts"],"sourcesContent":null,"names":["debug"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halospv3/hce.shared-config",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.3-develop.1",
|
|
4
4
|
"description": "Automate commit message quality, changelogs, and CI/CD releases. Exports a semantic-release shareable configuration deserialized from this package's '.releaserc.yml'. Shared resources for .NET projects are also distributed with this package.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"halo",
|
|
@@ -5,10 +5,15 @@
|
|
|
5
5
|
* extends {@link baseConfig }
|
|
6
6
|
*
|
|
7
7
|
* <-- TABLE OF CONTENTS -->
|
|
8
|
-
* - configureDotnetRelease
|
|
9
|
-
* - Insert-Edit Plugins
|
|
10
|
-
* - Append Plugins
|
|
11
8
|
*
|
|
9
|
+
* EASY: {@link getConfig}
|
|
10
|
+
* Just provide the paths of the project file(s) and keep your API tokens ready.
|
|
11
|
+
* ADVANCED: {@link SemanticReleaseConfigDotnet}
|
|
12
|
+
* Allows for a hands-on customization if {@link getConfig} doesn't meet your needs.
|
|
13
|
+
* Use a copy of {@link getConfig} as the starting point of a new function and make changes from there.
|
|
14
|
+
* - {@link SemanticReleaseConfigDotnet#splicePlugin splicePlugin (insert/edit plugins)}
|
|
15
|
+
* - {@link SemanticReleaseConfigDotnet#setupDotnetCommands setupDotnetCommands}
|
|
16
|
+
* - {@link SemanticReleaseConfigDotnet#getTokenTestingCommands getTokenTestingCommands}
|
|
12
17
|
*/
|
|
13
18
|
|
|
14
19
|
import { inspect } from 'node:util';
|
|
@@ -27,8 +32,6 @@ interface SRConfigDotnetOptions extends Omit<typeof baseConfig, 'plugins'> {
|
|
|
27
32
|
plugins: (UnArray<typeof baseConfig.plugins> | [string, unknown])[];
|
|
28
33
|
}
|
|
29
34
|
|
|
30
|
-
/**
|
|
31
|
-
*/
|
|
32
35
|
export class SemanticReleaseConfigDotnet {
|
|
33
36
|
private readonly options: SRConfigDotnetOptions;
|
|
34
37
|
private readonly _projectsToPublish: string[] | MSBuildProject[];
|
|
@@ -116,6 +119,8 @@ export class SemanticReleaseConfigDotnet {
|
|
|
116
119
|
return this._evaluatedProjects;
|
|
117
120
|
}
|
|
118
121
|
|
|
122
|
+
// eslint-disable-next-line jsdoc/require-param
|
|
123
|
+
/** @deprecated Superseded by {@link splicePlugin} */
|
|
119
124
|
insertPlugin(
|
|
120
125
|
afterPluginsIDs: string[],
|
|
121
126
|
insertPluginIDs: string[],
|
|
@@ -226,7 +231,6 @@ Appending it to the end of the array...This may cause an unexpected order of ope
|
|
|
226
231
|
|
|
227
232
|
/**
|
|
228
233
|
* Insert a plugin into the plugins array.
|
|
229
|
-
* @deprecated EXPERIMENTAL: needs thorough tests implemented before use in production!
|
|
230
234
|
* @param insertAfterPluginIDs Plugins which should appear BEFORE
|
|
231
235
|
* {@link insertPluginIDs}.
|
|
232
236
|
* @param insertPluginIDs The plugin(s) to insert into the plugins array.
|
package/dotnet/HCE.Shared.sln
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
3
|
-
# Visual Studio Version 17
|
|
4
|
-
VisualStudioVersion = 17.0.31903.59
|
|
5
|
-
MinimumVisualStudioVersion = 10.0.40219.1
|
|
6
|
-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{2E51AEEF-16E6-4514-9178-A28DE5B0EEC2}"
|
|
7
|
-
EndProject
|
|
8
|
-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HCE.Shared.DeterministicNupkg", "samples\HCE.Shared.DeterministicNupkg\HCE.Shared.DeterministicNupkg.csproj", "{087A1847-2555-47E0-B6D0-FCD8BC100DC9}"
|
|
9
|
-
EndProject
|
|
10
|
-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HCE.Shared.SignAfterPack", "samples\HCE.Shared.SignAfterPack\HCE.Shared.SignAfterPack.csproj", "{F7577073-D5A0-48AC-8D86-6AE193BE6274}"
|
|
11
|
-
EndProject
|
|
12
|
-
Global
|
|
13
|
-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
14
|
-
Debug|Any CPU = Debug|Any CPU
|
|
15
|
-
Release|Any CPU = Release|Any CPU
|
|
16
|
-
EndGlobalSection
|
|
17
|
-
GlobalSection(SolutionProperties) = preSolution
|
|
18
|
-
HideSolutionNode = FALSE
|
|
19
|
-
EndGlobalSection
|
|
20
|
-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
21
|
-
{087A1847-2555-47E0-B6D0-FCD8BC100DC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
22
|
-
{087A1847-2555-47E0-B6D0-FCD8BC100DC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
23
|
-
{087A1847-2555-47E0-B6D0-FCD8BC100DC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
24
|
-
{087A1847-2555-47E0-B6D0-FCD8BC100DC9}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
25
|
-
{F7577073-D5A0-48AC-8D86-6AE193BE6274}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
26
|
-
{F7577073-D5A0-48AC-8D86-6AE193BE6274}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
27
|
-
{F7577073-D5A0-48AC-8D86-6AE193BE6274}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
28
|
-
{F7577073-D5A0-48AC-8D86-6AE193BE6274}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
29
|
-
EndGlobalSection
|
|
30
|
-
GlobalSection(NestedProjects) = preSolution
|
|
31
|
-
{087A1847-2555-47E0-B6D0-FCD8BC100DC9} = {2E51AEEF-16E6-4514-9178-A28DE5B0EEC2}
|
|
32
|
-
{F7577073-D5A0-48AC-8D86-6AE193BE6274} = {2E51AEEF-16E6-4514-9178-A28DE5B0EEC2}
|
|
33
|
-
EndGlobalSection
|
|
34
|
-
EndGlobal
|