c# - Expand BIML files programmatically -


has tried programatically compile biml files dtsx packages? i'm writing application in c#.net users can update metadata. when data has been updated, biml files needs re-compiled, ssis packages added/removed upon re-compiling.

in question, suggested copy functionality bids helper:

automatically generate ssis package biml script

i have tried this, error saying:

bimlengine may executed bidshelper

this code:

        list<string> bimlscriptpaths = new list<string>();         bimlscriptpaths.add(@"c:\users\soren\documents\visual studio 2013\projects\integration services project2\integration services project2\bimlscript.biml");         string temptargetdirectory = "c:\\";         string projectdirectory = @"c:\users\soren\documents\visual studio 2013\projects\integration services project2";         validationreporter v = bidshelper.compilebiml(             typeof(astnode).assembly,              "varigence.biml.bidshelperphaseworkflows.xml",              "compile",              bimlscriptpaths,              new list<string>(),              temptargetdirectory,              projectdirectory,              sqlserverversion.sqlserver2008,              ssisversion.ssis2014,              ssasversion.ssas2008,              ssisdeploymentmodel.project); 


Comments

Popular posts from this blog

xslt - Substring before throwing error -

Google Cloud Bigtable Durability/Availability Guarantees -

Android M doze mode and "native" posix socket freezing up -