SAFE-Stack / docs

https://safe-stack.github.io/docs/
MIT License
145 stars 69 forks source link

V5 docs using sql provider sql server ssdt #341

Closed OutOfScopeia closed 9 months ago

OutOfScopeia commented 10 months ago

Updates to the 'use SQL provider' recipe.

Larocceau commented 10 months ago

There seems to be something wrong in the dependencies of one of the packages, which then fails at build because "Microsoft.Data.SqlClient" Version="5.0.0" is missing.

hacky workround is adding it directly as a dependency of server.:

  <ItemGroup>
      <PackageReference Include="Microsoft.Data.SqlClient" Version="5.0.0" />
  </ItemGroup>