.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:

  1. Drop Function. ..
  2. Drop assembly ...
  3. Create assembly ...
  4. Create function ...

and Call it sqlcmd as part of your build.


Comments

Popular posts from this blog

c# - PInvoke of NetUserAdd returns 24 -

c# - XMLDocument.Validate Error: System.InvalidOperationException : The XmlSchemaSet on the document is either null or has no schemas in it -