0
I have an application that dynamically loads dlls and other components at runtime, and I’m looking for a solution to build "complex" builds in the style of Apache Ant (available in Java). What options do I have? Any suggestions?
0
I have an application that dynamically loads dlls and other components at runtime, and I’m looking for a solution to build "complex" builds in the style of Apache Ant (available in Java). What options do I have? Any suggestions?
Browser other questions tagged c# visual-studio build
You are not signed in. Login or sign up in order to post.
Does Visual Studio’s standard Msbuild not suit you? There’s Nant, but today I think it’s behind you. Cake, Nuke, Cruise Control, teamCity,
– Maniero
As @Maniero mentioned, if you haven’t used Msbuild yet you should take a look, here we use and make builds with many particularities, as well as publish on the server, for application, service, App Pool, etc.. Here a good reading of MSDN
– Ricardo Pontual
I never used msbuild, so I read of the links mentioned will suit me. thank you very much for the tip :)
– Fabricio Casali