Marusyk / grok.net

.NET implementation of the grok 📝
MIT License
287 stars 55 forks source link

Enable PackageValidation tool #61

Closed Marusyk closed 1 year ago

Marusyk commented 1 year ago

The SDK provides a tool to validate NuGet packages right after creating them. At the moment, it provides the following checks:

To enable it, you can add the following property to your project file:

<Project>
  <PropertyGroup>
    <EnablePackageValidation>true</EnablePackageValidation>

    <!-- Optional: Detect breaking changes from a previous stable version -->
    <PackageValidationBaselineVersion>1.0.0</PackageValidationBaselineVersion>
  </PropertyGroup>
</Project>