Merge branch 'feature/identity-stable-package-baseline' into development

This commit is contained in:
José René White Enciso 2026-02-25 16:50:51 -06:00
commit 8edfe3b566
3 changed files with 17 additions and 7 deletions

10
Directory.Build.props Normal file
View File

@ -0,0 +1,10 @@
<Project>
<PropertyGroup>
<Authors>AgileWebs</Authors>
<Company>AgileWebs</Company>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>http://192.168.68.156:3000/AgileWebs/building-block-identity</RepositoryUrl>
<PackageProjectUrl>http://192.168.68.156:3000/AgileWebs/building-block-identity</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
</Project>

View File

@ -6,24 +6,24 @@
- Authentication: Gitea login + token - Authentication: Gitea login + token
- HTTP requirement: `allowInsecureConnections="true"` in `nuget.config` - HTTP requirement: `allowInsecureConnections="true"` in `nuget.config`
## Published Baseline ## Stable Version Matrix
| Package | Version | Published On | | Package | Version | Published On |
| --- | --- | --- | | --- | --- | --- |
| BuildingBlock.Identity.Contracts | 0.1.0-decouple.20260225140619 | 2026-02-25 | | BuildingBlock.Identity.Contracts | 0.2.0 | 2026-02-25 |
## Dependency Note ## Dependency Note
`BuildingBlock.Identity.Contracts` depends on: `BuildingBlock.Identity.Contracts` depends on:
- `Core.Blueprint.Common` version `0.1.0-decouple.20260225140619` - `Core.Blueprint.Common` version `0.2.0`
Use coordinated package versions when publishing packages built from project-reference graphs. Stable package waves must keep dependency versions aligned.
## Consumer Validation ## Consumer Validation
Restore validation passed using: Restore validation passed using:
- `TargetFramework`: `net10.0` - `TargetFramework`: `net10.0`
- `PackageReference`: `BuildingBlock.Identity.Contracts` `0.1.0-decouple.20260225140619` - `PackageReference`: `BuildingBlock.Identity.Contracts` `0.2.0`
- Restore flags: `--no-cache --force` after publication - Restore flags: `--no-cache --force`

View File

@ -5,6 +5,6 @@
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\..\blueprint-platform\src\Core.Blueprint.Common\Core.Blueprint.Common.csproj" /> <PackageReference Include="Core.Blueprint.Common" Version="0.2.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>