Skip to content

Commit

Permalink
Some code analysis feature fixes after field testing a large schema (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEJ authored Feb 29, 2024
1 parent dd1c321 commit 8c64d74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DacpacTool/DacpacTool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<ItemGroup>
<!-- These packages contain DacFX analysis rules, which must be located with the executable in order to be discovered-->
<PackageReference Include="ErikEJ.DacFX.SqlServer.Rules" Version="1.0.0-preview3" IncludeAssets="runtime" />
<PackageReference Include="ErikEJ.DacFX.SqlServer.Rules" Version="1.0.0-preview4" IncludeAssets="runtime" />
<PackageReference Include="ErikEJ.DacFX.TSQLSmellSCA" Version="1.0.0-preview1" IncludeAssets="runtime" />

<PackageReference Include="Microsoft.SqlServer.DacFx" Version="162.2.111" />
Expand Down
2 changes: 1 addition & 1 deletion src/DacpacTool/PackageAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void Analyze(TSqlModel model, FileInfo outputFile)
}
catch (Exception ex)
{
_console.WriteLine($"ERROR: An unknown error occurred while analyzing package '{outputFile.FullName}': {ex.Message}");
_console.WriteLine($"ERROR: An unknown error occurred while analyzing package '{outputFile.FullName}': {ex}");
}
}

Expand Down

0 comments on commit 8c64d74

Please sign in to comment.