@halospv3/hce.shared-config 3.1.1-develop.1 → 3.2.0-develop.2
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 +12 -0
- package/dotnet/BuildEachRID.targets +13 -0
- package/dotnet/HCE.Shared.targets +1 -0
- package/dotnet/PublishAll.targets +2 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [3.2.0-develop.2](https://github.com/HaloSPV3/HCE.Shared/compare/v3.2.0-develop.1...v3.2.0-develop.2) (2025-11-09)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **dotnet.PublishAll:** fix invalid conditions; remove erroneous Error ([73f984f](https://github.com/HaloSPV3/HCE.Shared/commit/73f984f96770cafaafcc0448cc1a3c4a4fd9a119))
|
|
6
|
+
|
|
7
|
+
## [3.2.0-develop.1](https://github.com/HaloSPV3/HCE.Shared/compare/v3.1.1-develop.1...v3.2.0-develop.1) (2025-11-09)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **dotnet.BuildEachRID:** add `BuildEachRID` .NET Target ([8f684e3](https://github.com/HaloSPV3/HCE.Shared/commit/8f684e31b607faad5f1994292175585e5943d4e3))
|
|
12
|
+
|
|
1
13
|
## [3.1.1-develop.1](https://github.com/HaloSPV3/HCE.Shared/compare/v3.1.0...v3.1.1-develop.1) (2025-11-08)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<Project>
|
|
2
|
+
<!-- https://github.com/dotnet/sdk/issues/9795#issuecomment-2021271237 -->
|
|
3
|
+
<Target Name="BuildEachRID" AfterTargets="PostBuildEvent"
|
|
4
|
+
Condition=" '$(TargetFramework)' != ''
|
|
5
|
+
AND '$(RuntimeIdentifier)' == ''
|
|
6
|
+
AND '$(RuntimeIdentifiers)' != '' ">
|
|
7
|
+
<ItemGroup>
|
|
8
|
+
<_RuntimeIdentifier Include="$(RuntimeIdentifiers)" />
|
|
9
|
+
</ItemGroup>
|
|
10
|
+
<MSBuild Projects="$(MSBuildProjectFile)"
|
|
11
|
+
Properties="TargetFramework=$(TargetFramework);RuntimeIdentifier=%(_RuntimeIdentifier.Identity)" />
|
|
12
|
+
</Target>
|
|
13
|
+
</Project>
|
|
@@ -2,6 +2,7 @@
|
|
|
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="./BuildEachRID.targets" />
|
|
5
6
|
<Import Project="./ExecNupkgDeterministicator.targets" />
|
|
6
7
|
<Import Project="./HCE.Shared.CI.props" />
|
|
7
8
|
<Import Project="./ZipPublishDir.targets" />
|
|
@@ -56,12 +56,9 @@
|
|
|
56
56
|
RuntimeIdentifiers: $(RuntimeIdentifiers)
|
|
57
57
|
_PublishRuntime: @(_PublishRuntime)" />
|
|
58
58
|
|
|
59
|
-
<
|
|
60
|
-
Text="Both RuntimeIdentifier and RuntimeIdentifiers are undefined!" />
|
|
61
|
-
|
|
62
|
-
<MSBuild Condition=" `@(_PublishRuntime->'%(Identity)')` != '' "
|
|
59
|
+
<MSBuild Condition=" '$(RuntimeIdentifiers)' != '' "
|
|
63
60
|
Projects="$(MSBuildProjectFile)" Targets="Publish" Properties="TargetFramework=$(TargetFramework);RuntimeIdentifier=%(_PublishRuntime.Identity)" />
|
|
64
|
-
<MSBuild Condition="
|
|
61
|
+
<MSBuild Condition=" '$(RuntimeIdentifiers)' == '' "
|
|
65
62
|
Projects="$(MSBuildProjectFile)" Targets="Publish" Properties="TargetFramework=$(TargetFramework)" />
|
|
66
63
|
</Target>
|
|
67
64
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halospv3/hce.shared-config",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0-develop.2",
|
|
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",
|