RefactorLog support
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>