INTERACT FORUM

Windows => Plug-in Development => Topic started by: PaulSinnema on April 28, 2007, 01:10:37 pm

Title: Centralize Code Using Visual Studio 2005
Post by: PaulSinnema on April 28, 2007, 01:10:37 pm
Hi,

Well I've done it. A second Plugin is leaving my stable. It's a Plugin that gives Skype users the ability to lower the Volume when a call comes in. Looks good and works fine.

Now I've centralized some of my code in several different classes but I can't find a way to include them in my project. For now I copy the classes into the new Project but there must be a way to centralize them. Anyone got a clue how to do that? I've been searching all over the web for hours but couldn't find anything that helps.

Paul.
Title: Re: Centralize Code Using Visual Studio 2005
Post by: src666 on April 28, 2007, 05:17:15 pm
The key is to create a new Solution, then add your projects to that. This will allow you to consolidate your builds.

If you are looking to make all of your classes part of the same DLL, then you will need to put them into the same project.
Title: Re: Centralize Code Using Visual Studio 2005
Post by: PaulSinnema on April 28, 2007, 05:47:20 pm
Thanks src666,

Was on my way to bed when I noticed your reaktion. I'll try it out tomorrow.

Paul.