Activity overview
Latest activity by jasonauk
Hi Simon,
My [Flags] attribute is used on an Enum which is in turn used by a class (marked as Serialisable) that is serialised to XML. When the object to written the XML the DaysOfWeek property should be written as "Monday Tuesday Wednesday Thursday Friday" for those chosen days. After it has been processed by SmartAssembly, as the [Flags] attribute is no longer there, it fails to serialise/deserialse and results in a crash.
Jason / comments
Hi Simon,
My [Flags] attribute is used on an Enum which is in turn used by a class (marked as Serialisable) that is serialised to XML. When the object to written the XML the DaysOfWeek property sho...
smuda wrote:
Just another user... [image]
Oops! A little confusion there! Sorry! / comments
smuda wrote:
Just another user...
Oops! A little confusion there! Sorry!
Hi John,
Thanks for your prompt reply. I did just do that, and it worked [image] . At least I can configure SmartAssembly to prune that one class rather than everything.
When can we expect a proper fix? It does seem slightly worrying that we can end up with broken builds if we upgrade SmartAssembly and trust it to work!
Jason / comments
Hi John,
Thanks for your prompt reply. I did just do that, and it worked . At least I can configure SmartAssembly to prune that one class rather than everything.
When can we expect a proper fix? It...
Hello,
I am still having issues with this bug. [Flags]
public enum DaysOfWeekFlags
{
NotSet = 0,
Monday = 1,
Tuesday = 2,
Wednesday = 4,
Thursday = 8,
Friday = 16,
Saturday = 32,
Sunday = 64,
Every = 127
}
still results in: public enum DaysOfWeekFlags
{
NotSet,
Monday,
Tuesday,
Wednesday = 4,
Thursday = 8,
Friday = 16,
Saturday = 32,
Sunday = 64,
Every = 127
}
I have the latest version: 6.6.2.35. / comments
Hello,
I am still having issues with this bug. [Flags]
public enum DaysOfWeekFlags
{
NotSet = 0,
Monday = 1,
Tuesday = 2,
Wednesday = 4,
...