Skip to content

Commit

Permalink
allow configuration of central package management
Browse files Browse the repository at this point in the history
  • Loading branch information
jdevillard committed May 31, 2024
1 parent 6eed680 commit 5b09628
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 5b09628

Please sign in to comment.