Skip to content

Commit

Permalink
Merge pull request #5 from jdevillard/feature/allow-centralpackage-ma…
Browse files Browse the repository at this point in the history
…nagement

Allow configuration of central package management
  • Loading branch information
FlorianRappl authored May 31, 2024
2 parents 6eed680 + 5b09628 commit b9ecd02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Piral.Blazor.Sdk/Sdk/Sdk.targets
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Piral.Blazor.Shared" Version="0.5.0" PrivateAssets="all" />
<PackageReference Condition="'$(ManagePackageVersionsCentrally)' == '' OR '$(ManagePackageVersionsCentrally)' == false" Include="Piral.Blazor.Shared" Version="0.5.0" PrivateAssets="all"/>
<PackageReference Condition="'$(ManagePackageVersionsCentrally)' == true" Include="Piral.Blazor.Shared" VersionOverride="0.5.0" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit b9ecd02

Please sign in to comment.