Go Back   RunUO - Ultima Online Emulation > RunUO > Utility Support > Third Party Program Support

Third Party Program Support Misc support forum and advertisment forum for all RunUO related third party Utilities.

Reply
 
Thread Tools Display Modes
Old 07-08-2008, 01:08 PM   #1 (permalink)
Forum Expert
 
Join Date: Mar 2003
Location: Canada, eh?
Age: 23
Posts: 464
Default Project Creator 2008 - v1.1.0.0

Updated version of the project creator from oh-so long ago, many thanks to Lokai for providing me with an updated version with VS2008

Previous release threads/posts:
Project Creator Source
RunUO Core Project Creator
Project Tool
[RunUO 2.0 SVN] Mondain's Legacy Simple Installs (with Nerun's Distro)

Code:
Version 1.1.1.0 Date: 2008-08-15
      Tylius - Removed SharpDevelop project files as it uses Visual-Studio style projects now

Version 1.1.0.1 Date: 2008-07-11
      Tylius - * Removed old, unsupported project files
             * Added a checkbox for including Ultima.dll as a reference in created project if scripts/server happen to use it (as it's common)

Version 1.1.0.0 Date: 2008-07-08
      Tylius - * Recreated project using VS2008 to have a modern file structure.
             * Renamed all references of Core to Server.
             * Fixed issues with source files in the root directory being incorrectly added to the project file.
             * Removed some unneeded code.
             * Restructured the code/files for projects and constants.
             * Fixed missing references for script/server project files.
             * Added windows for About, Howto, and the Changelog, along with a menu for selecting them.
             * Fixed incorrect RunUO.exe reference if script project created from its own directory

Version 1.0.3.0 Date: Unknown
      Lokai - Added support for VS 2008

Version 1.0.2.0 Date: 2005-01-26
      Eggy - * Renamed to ProjectTool 
             * Added version system with assembly file, for easier bug tracking.
             * Added missing nessary referances to make the script project compile from the orginal 
               generation with little hassle. Tested with RunUO 1.0.0 Final scripts.
             * Fixed the project generation so that it refers to Server.exe.dll instead of RunUO.exe.dll
               as this seems to be the new exe name as of RunUO 1.0.0 Final.
             * Fixed some spacing issues with the VS.Net 2003 project genearation.
             * Fixed the core project generation so it compiles as a console application rather than a
               windows native program (easier to debug the server this way).
      
Version 1.0.1.0 Date: 2005-01-22
      Arahil - Added Support for RunUO Core source project generation.
      
Version 1.0.0.0 Date: 2004-12-15
      Tylius - Orginal Project Creator release - designed to work with scripts.
Attached Files
File Type: zip Project Tool 2008 v1.1.1.0 - Binary.zip (13.2 KB, 13 views)
File Type: zip Project Tool 2008 v1.1.1.0 - Source.zip (27.2 KB, 6 views)
__________________
Tylius Dragon --==(UDIC)==--

Last edited by Tylius; 08-15-2008 at 01:26 PM.
Tylius is offline   Reply With Quote
Old 07-11-2008, 10:57 PM   #2 (permalink)
Forum Expert
 
Join Date: Mar 2003
Location: Canada, eh?
Age: 23
Posts: 464
Default

Code:
Version 1.1.0.1 Date: 2008-07-11
      Tylius - * Removed old, unsupported project files
             * Added a checkbox for including Ultima.dll as a reference in created project if scripts/server happen to use it (as it's common)
__________________
Tylius Dragon --==(UDIC)==--
Tylius is offline   Reply With Quote
Old 07-30-2008, 03:13 PM   #3 (permalink)
Drow Rogue/Scripter
 
Join Date: Sep 2002
Posts: 287
Send a message via ICQ to ViWinfii
Default

When I try to open your zip files, I cannot because they are corrupted. Any way I could get the source code posted so I could compile one myself? I've noticed a lot of zip files being corrupt from the RunUO forums lately.

*edit* Nevermind, the zip files are double zipped. Forgot about how the RunUO forums deals with zipped files.

Last edited by ViWinfii; 07-30-2008 at 04:58 PM.
ViWinfii is offline   Reply With Quote
Old 07-30-2008, 03:25 PM   #4 (permalink)
Forum Expert
 
typhoonbot's Avatar
 
Join Date: Dec 2006
Posts: 478
Default

OKay, Sorry for my ignorance, where can I find the description of what exactly this is / does ?

regards
__________________
legendsofkaine.page.tl
typhoonbot is offline   Reply With Quote
Old 07-30-2008, 05:05 PM   #5 (permalink)
Drow Rogue/Scripter
 
Join Date: Sep 2002
Posts: 287
Send a message via ICQ to ViWinfii
Default

Quote:
Originally Posted by typhoonbot View Post
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?
ViWinfii is offline   Reply With Quote
Old 07-30-2008, 05:11 PM   #6 (permalink)
ConnectUO Creator
 
Jeff's Avatar
 
Join Date: Jan 2004
Age: 27
Posts: 4,824
Default

Quote:
Originally Posted by ViWinfii View Post
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?
To be honest, i never liked Sharpdevelop. I used it back in the 1.1 days of .Net and when i made Windows Applications the .Net Security attributes would be messed up ad I would have to grant access manually through .Net Administrative security.
__________________
Jeff Boulanger
ConnectUO - Core Developer

Want to help make ConnectUO better? Click here to submit your ideas/requests
Use your talent to compete against other community members in RunUO hosted coding competitions

If you know XNA (even if its just a little) or are a good artist(2d or 3d) and are interested in making games for a hobby send me a pm or drop by #xna in irc.runuo.com. I'm looking to put together a small game development team.


Please do not pm me for support. If you are having issues please post in the appropriate forum. Thanks for your continued support of both ConnectUO and RunUO
Jeff is offline   Reply With Quote
Old 08-02-2008, 05:42 PM   #7 (permalink)
Master of the Internet
 
Join Date: Mar 2006
Location: Germany
Age: 17
Posts: 14,546
Send a message via AIM to Suil Ban Send a message via MSN to Suil Ban
Default

I still use SharpDevelop to compile stuff in .NET 1.1. I dread command line compilation.
__________________

Now open - uo15.net - The best in Publish 15 emulation
Suil Ban is offline   Reply With Quote
Old 08-11-2008, 01:14 AM   #8 (permalink)
Forum Expert
 
Join Date: Mar 2003
Location: Canada, eh?
Age: 23
Posts: 464
Default

Apologies guys about SharpDevelop, the project file structure had been added for it way back in the 1.x releases, and I don't believe anyone has touched them since SharpDevelop was updated to 2.x

I'll try to get around to updating it today
__________________
Tylius Dragon --==(UDIC)==--
Tylius is offline   Reply With Quote
Old 08-11-2008, 06:38 AM   #9 (permalink)
Forum Expert
 
Lokai's Avatar
 
Join Date: Aug 2003
Location: Bergen, NY (Rochester)
Age: 41
Posts: 1,422
Send a message via ICQ to Lokai Send a message via MSN to Lokai Send a message via Yahoo to Lokai
Default

Quote:
Originally Posted by Tylius View Post
Apologies guys about SharpDevelop, the project file structure had been added for it way back in the 1.x releases, and I don't believe anyone has touched them since SharpDevelop was updated to 2.x

I'll try to get around to updating it today
This is correct. I completely ignored the Sharp Develop code, and may have simply copied it 'as is' from the original release when I put together my version of this. And so it passes to you. I tried using Sharp Develop for a while, but when MS released C# Express Editions for free, I had to jump ship.
Lokai is offline   Reply With Quote
Old 08-14-2008, 10:29 PM   #10 (permalink)
Forum Expert
 
Join Date: Mar 2003
Location: Canada, eh?
Age: 23
Posts: 464
Default

Quote:
Originally Posted by Lokai View Post
This is correct. I completely ignored the Sharp Develop code, and may have simply copied it 'as is' from the original release when I put together my version of this. And so it passes to you. I tried using Sharp Develop for a while, but when MS released C# Express Editions for free, I had to jump ship.
Same here regarding the Express editions, I'm assuming that's also why no one's heard any complaints about the SharpDevelop project files not working.

Anyhow, installing SharpDevelop now, expect an update tomorrow.
__________________
Tylius Dragon --==(UDIC)==--
Tylius is offline   Reply With Quote
Old 08-15-2008, 01:37 PM   #11 (permalink)
Forum Expert
 
Join Date: Mar 2003
Location: Canada, eh?
Age: 23
Posts: 464
Default

After checking out the latest stable SharpDevelop (2.2), it seems to use the same project files as Visual Studio does now (MSBuild), therefore I've removed the SharpDevelop option from the application as to not confuse users.
__________________
Tylius Dragon --==(UDIC)==--
Tylius is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5