- January 3, 2008
- 890
- 556
- Home Country
- Germany
- Moderator
- #1
With the release of the latest SVN my BackupSettings plugin broke due to the changed .dll files. When i recompiled my plugin with the latest .dll files everything worked, but this version does no more support MP1.0 final. I expect this will be now an issue for all Tv server plugins. So my questions are:
1) Is there a way to set up the compiler in Microsoft Visual C# 2008 Express Edition to do a quick change between 2 different sets of .dll files? Is there a source code example?
2) The new .dll file required some code changes like
old dll: IList channels = Channel.ListAll();
new dll: IList<Channel> channels = Channel.ListAll();
Can I set up my source code with a global switch to change between the settings?
I do not want to maintain two separate code versions for MP1.0 final and the latest SVNs. Please help!
1) Is there a way to set up the compiler in Microsoft Visual C# 2008 Express Edition to do a quick change between 2 different sets of .dll files? Is there a source code example?
2) The new .dll file required some code changes like
old dll: IList channels = Channel.ListAll();
new dll: IList<Channel> channels = Channel.ListAll();
Can I set up my source code with a global switch to change between the settings?
I do not want to maintain two separate code versions for MP1.0 final and the latest SVNs. Please help!