Exporting XNA class library as a DLL file

Posted by Will Bagley on Game Development See other posts from Game Development or by Will Bagley
Published on 2012-12-13T02:43:34Z Indexed on 2012/12/13 5:18 UTC
Read the original article Hit count: 344

Filed under:
|
|
|

I have downloaded an open source project that I intend to use with my current game. The download came with all the class files from the original project as well as a pre-compiled DLL file representing the project. I was able to easily link this DLL with my current project and get it working just fine, no problems there.

The problem I now have is that I want to make a couple of changes to the original libraries (extend its functionality a bit to better suit my needs) and re-export the class library as a DLL again, but I have no clue how to do this. Is there some simple way in VS where I can just take the class library and export/compile it as a DLL file again or is there more to it than that?

This seems like something that should be pretty simple but my efforts to find an answer have so far come up with nothing.

Thanks in advance.

© Game Development or respective owner

Related posts about XNA

Related posts about open-source