.net - How to push SQLCLR updates to your (CI) server -
I have something between WinForm client using SQL 2005 server and SQLLL. I am using NET code.
This code has dependencies beyond .NET 2.0, which means that I must add server machines (like CREATE ASSEMBLY
) to these machines.
I'm trying to do it as part of CI build and I'm wondering which methods have done the best thing.
Create a * .sql file Sequence:
- Drop Function. ..
- Drop assembly ...
- Create assembly ...
- Create function ...
and Call it sqlcmd as part of your build.
Comments
Post a Comment