vote up 0 vote down star

I'm re-using some .NET code between SQL 2005 server and WinForm clients using SQLCLR.

This code has dependencies beyond .NET 2.0 which means I have to add these assemblies on the server machine (e.g. CREATE ASSEMBLY).

I'm trying to do this as part of a CI build and am wondering what methods have worked best.

flag

74% accept rate

1 Answer

vote up 1 vote down

Create an *.sql file with the sequence:

  1. DROP FUNCTION ...
  2. DROP ASSEMBLY ...
  3. CREATE ASSEMBLY ...
  4. CREATE FUNCTION ...

and call it with sqlcmd as part of your build.

link|flag
Yep, good answer, but missing the component of how you are converting the IL into format for the CREATE ASSEMBLY? – Brett Veenstra Dec 3 at 15:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.