Merge branch 'feature/furniture-domain-stable-package-baseline' into development

This commit is contained in:
José René White Enciso 2026-02-25 16:50:52 -06:00
commit 0498791e15
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/furniture-domain</RepositoryUrl>
<PackageProjectUrl>http://192.168.68.156:3000/AgileWebs/furniture-domain</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
</Project>

View File

@ -10,15 +10,15 @@
| Package | Version | Published On |
| --- | --- | --- |
| Furniture.Domain | 0.1.0-decouple.20260225140619 | 2026-02-25 |
| Furniture.Domain | 0.2.0 | 2026-02-25 |
## Dependency Note
`Furniture.Domain` depends on:
- `BuildingBlock.Inventory.Contracts` version `0.1.0-decouple.20260225140619`
- `BuildingBlock.Catalog.Contracts` version `0.1.0-decouple.20260225140619`
- `Core.Blueprint.Common` version `0.1.0-decouple.20260225140619`
- `BuildingBlock.Inventory.Contracts` version `0.2.0`
- `BuildingBlock.Catalog.Contracts` version `0.2.0`
- `Core.Blueprint.Common` version `0.2.0`
Use coordinated package versions for domain packages that transitively reference BuildingBlock and Blueprint packages.
@ -27,5 +27,5 @@ Use coordinated package versions for domain packages that transitively reference
Restore validation passed using:
- `TargetFramework`: `net10.0`
- `PackageReference`: `Furniture.Domain` `0.1.0-decouple.20260225140619`
- `PackageReference`: `Furniture.Domain` `0.2.0`
- Restore flags: `--no-cache --force` after publication

View File

@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\building-block-catalog\src\BuildingBlock.Catalog.Contracts\BuildingBlock.Catalog.Contracts.csproj" />
<ProjectReference Include="..\..\..\building-block-inventory\src\BuildingBlock.Inventory.Contracts\BuildingBlock.Inventory.Contracts.csproj" />
<PackageReference Include="BuildingBlock.Catalog.Contracts" Version="0.2.0" />
<PackageReference Include="BuildingBlock.Inventory.Contracts" Version="0.2.0" />
</ItemGroup>
</Project>