Created
December 5, 2024 21:14
-
-
Save m-jovanovic/3e610fdacc769c5d1622154c0321e5df to your computer and use it in GitHub Desktop.
Example Directory.Build.props you can add in a Visual Studio solution to implement Central Package Management.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project> | |
<PropertyGroup> | |
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" /> | |
<PackageVersion Include="Serilog" Version="4.1.0" /> | |
<PackageVersion Include="Polly" Version="8.5.0" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment