1

I have a data class in my C# project and when I try to generate some sample data in Expression Blend 4 it uses my some sort of oudated version of my class which creates the problem that my newly added properties aren't gernerated in the sample data and some removed properties are.

I tried restarting VS and Expression Blend 4, Clean and Rebuild and done that like 8 times over again.

I hope someone can help me :)

Mats Hofman
  • 7,060
  • 6
  • 33
  • 48

1 Answers1

1

Expression Blend uses Debug builds of your code for design-time and sample-data generation.

So if you're building as Release, it won't notice the changes.

Claus Jørgensen
  • 25,882
  • 9
  • 87
  • 150