Quote:
Originally Posted by typhoonbot
OKay, Sorry for my ignorance, where can I find the description of what exactly this is / does ?
regards
|
This is supposed to create project files used by either Sharpdevelop, or Visual C# 2005 Express / 2008 Express. However it seems to be buggy for the latest version of Sharpdevelop. I may have to make the move to Visual C# 2008 Express just to see if it works better.
When I create a Sharpdevelop project for the core scripts, after removing some references that were doubled I get this error multiple times from different scripts:
The non-generic type 'System.Collections.Queue' cannot be used with type arguments (CS0308)
and
The non-generic type 'System.Collections.Stack' cannot be used with type arguments (CS0308)
Microsoft's solution database told me that to fix this problem, I needed to add the following line at the top of all the scripts involved.
Code:
using System.Collections.Generic;
The scripts already have this line added. I'm thinking I'm missing a reference but I can't figure out which one I'm missing. Sharpdevelop is version 2.2.1 build 2648. Anyone got any ideas besides switching to Visual C# 2008 Express?