Activity overview
Latest activity by CodeGuru
Thanks Jessica.
I made a trigger of "AFTER INSERT" using the DELETE FROM line you posted and my own date range.
It works very well.
I think I may modify it further one of these days to limit it to builds within the last 30 days OR the last build for any project. / comments
Thanks Jessica.
I made a trigger of "AFTER INSERT" using the DELETE FROM line you posted and my own date range.
It works very well.
I think I may modify it further one of these days to limit it to ...
Limit Error Reports from older versions?
We've been using the error reporting feature of SmartAssembly for years. Over those years we've released hundreds of new updates.
Is there a way to silently reject error reports that are from older...
Ok, it must be a GUI bug. Editing the settings file with the posted information does work in getting the Maps saved to a new location.
The GUI path doesn't show the updated location though. / comments
Ok, it must be a GUI bug. Editing the settings file with the posted information does work in getting the Maps saved to a new location.
The GUI path doesn't show the updated location though.
<Maps LocalPath="D:\SmartAssembly\" /> doesn't work.
Using the instructions listed at the bottom here:http://www.red-gate.com/supportcenter/C ... 362539.htm
I have edited my settings file as follows....
<SmartAssembly.Settings>
<Options>
<Maps LocalP...
Brian Donahue wrote:
If you want the string representation of this enum to be ("X"), maybe telling the enum to derive from the type long and using ((long)MyEnum).ToString("X")
That's exactly what I do to get SmartAssembly obfuscating the names properly.
I have not tried the [Flags] attribute as an alternative fix.
Thanks for the reply. / comments
Brian Donahue wrote:
If you want the string representation of this enum to be ("X"), maybe telling the enum to derive from the type long and using ((long)MyEnum).ToString("X")
That's exactly w...
Obfuscating enum names when enum is .ToString()'d
The bug I described here:http://www.red-gate.com/MessageBoard/vi ... hp?t=12231
STILL exists in the latest version of 6.
Its pretty frustrating have to put my exe's through IDA just to make sure Sm...
If you .ToString() an enum, the enum and its class won't get obfuscated.
I've made a post about it here, and also submitted the working example to SA. / comments
If you .ToString() an enum, the enum and its class won't get obfuscated.
I've made a post about it here, and also submitted the working example to SA.
I did, hence my ninja edit. I'll provide a sample after lunch. / comments
I did, hence my ninja edit. I'll provide a sample after lunch.
Obfuscating enum names when enum is .ToString()'d
Say for instance I haveClass Drawing
{
enum Color
{
red,
blue,
}
}
and I reference it by:
Color myColor = Color.red;
myColor.ToString();
Smart Assembly will not ...