development SVN server is available now

Started by mce2222, 09. Jun 2008, 00:56

previous topic - next topic
Go Down

mce2222

Hello guys....

I created a project space on assembla.com
it looks like a decent service to me ;)  it has SVN, Trac, WIKI, File uploads, Scrum info...  not too shabby for a free service.


http://www.assembla.com/flows/flow/x300t
currently I have set it to "non-public" so you need to create a login on the server and tell me your username so that I can add you to the team.

at the moment there is only the BooterCE application in the SVN, but I cleaned the code a bit, and I also managed to fix the "execute any application" problem :)
also the tv2client.exe is no longer started... with the drawback that the video-out is never enabled (at least on the x300t)

please do not bother to contact me, if you do not want to contribute anything.
if a working application is created, it will be released to the WIKI on this site.

is0-mick

Quote
and I also managed to fix the "execute any application" problem Smiley


Please tell more :)

Thanks
Mick

mce2222

FileInfo fi = new FileInfo("/Hard Disk2/test/startme.exe");
ProcessStartInfo startInfo = new ProcessStartInfo(fi.FullName, null);
startInfo.UseShellExecute = false;
startInfo.WorkingDirectory = fi.Directory.FullName;
Process myProcess = Process.Start(startInfo);


setting the working directory is optional, but could be useful ;)

Herman

i do want to play with this but I wont have time over the next week or so.
Getting tv2client not running or at least from an alternate location sounds good :)

DJHope

please add me to the svn :) my username is the same as here...

Go Up