Page 2 of 2

Re: few sharpdevelop Q's

PostPosted: Fri May 19, 2017 12:03 am
by ontheDOL
another #develop question.

When using breakpoints(my new favorite thing) , if I try to set any points on scripts inside GSS folder, they are overlooked (olive dot)

I'm guessing this is because the scripts arent part of the csproj? is there anyway to have breakpoints work with them without having to include them in this file? if thats the issue...

Re: few sharpdevelop Q's

PostPosted: Fri May 19, 2017 5:36 am
by Leodagan
This is because GSS do not load the code compiled by SharpDevelop but use a dynamic compilation when starting the server !

I made a switch for developers to be able to debug GSS, in serverconfig.xml :
Code: Select all
<EnableCompilation>False</EnableCompilation>
This will disable runtime compilation and use the GSS Binary build from your compiler ;)

The downside is that you have to put your custom files inside GSS Project to make sure they are build inside the GSS DLL, instead of relying on DOL auto-detection...

Re: few sharpdevelop Q's

PostPosted: Fri May 19, 2017 1:32 pm
by ontheDOL
nice, I'll give that a try.

Re: few sharpdevelop Q's

PostPosted: Sun May 21, 2017 4:05 pm
by Graveen
Excellent Leo, thank you.