Compile DLL project into 3 seperate ones
-
I have a big dll project with 3 different namespaces. Complete code is well structured and now I want to make one dll for each namespace out of it. Now I have the possibility to start 3 new projects, copy and paste the code and compile it. But is there another way to compile without the copy paste possibility? Thanks!
-
I have a big dll project with 3 different namespaces. Complete code is well structured and now I want to make one dll for each namespace out of it. Now I have the possibility to start 3 new projects, copy and paste the code and compile it. But is there another way to compile without the copy paste possibility? Thanks!
Are your namespaces in different code files? If so, you could just copy the files themselves rather than the code. Either way should work.
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Morality Apart from God Judah Himango
-
I have a big dll project with 3 different namespaces. Complete code is well structured and now I want to make one dll for each namespace out of it. Now I have the possibility to start 3 new projects, copy and paste the code and compile it. But is there another way to compile without the copy paste possibility? Thanks!
Hello, I'm pretty sure that this is not possible. The smalles unit that you can build is a project and the linker doesn't produce more than one assembly per project. I don't know about VS 2003, but if you're using VS 2005, you can make a new project and take the project properties from the original one. In the project explorer, you can move the files per namespace to the other projects. The IDE moves the physical files for you. Second, you'll have to add the references to the projects and do a build solution. Hope this helps. :) Behind every great black man... ... is the police. - Conspiracy brother Blog[^]
-
I have a big dll project with 3 different namespaces. Complete code is well structured and now I want to make one dll for each namespace out of it. Now I have the possibility to start 3 new projects, copy and paste the code and compile it. But is there another way to compile without the copy paste possibility? Thanks!
Can't you just move them all under the same solution or add them to a solution and compile it that way? Tom Tom Wright tawright915@yahoo.com
-
I have a big dll project with 3 different namespaces. Complete code is well structured and now I want to make one dll for each namespace out of it. Now I have the possibility to start 3 new projects, copy and paste the code and compile it. But is there another way to compile without the copy paste possibility? Thanks!