v2.9.0
Use Nuget based code analyzers
In this release we have added support for NuGet based code analyzers, simply add a reference to a rules Nuget package in your project file:
<ItemGroup>
<PackageReference Include="ErikEJ.DacFX.SqlServer.Rules" Version="1.1.0" />
<PackageReference Include="ErikEJ.DacFX.TSQLSmellSCA" Version="1.1.0" />
</ItemGroup>
Notice that you should set your target framework to netstandard2.1 if you consume NuGet based rules!
<TargetFramework>netstandard2.1</TargetFramework>
- Report DacModelExceptions better, and continue processing all files by @ErikEJ in #598
- Verify that GenerateCreateScript works by @ErikEJ in #599
- Enable .NET Analyzers in DacpacTool by @ErikEJ in #604
- Support NuGet based code analyzers by @ErikEJ in #625
Full Changelog: v2.6.0...v2.9.0