Skip to content

RefactorLog support

Compare
Choose a tag to compare
@jmezach jmezach released this 02 Sep 09:16
· 4 commits to release/v1.5.0 since this release

The original SQL Server Database Projects maintain a log of refactorings performed in the database project. These are stored in a .refactorlog file. In previous versions of MSBuild.Sdk.SqlProj these weren't embedded in the resulting .dacpac. Now we embed this file into the package if it is defined in the .csproj using the following syntax:

<Project Sdk="MSBuild.Sdk.SqlProj/1.5.0">
  ...
  <ItemGroup>
    <RefactorLog Include="TestProject.refactorlog" />
  </ItemGroup>
  ...
</Project>