I am storyboarding several different UI wizards in Expression Blend 4 with SketchFlow. I'm keeping each wizard in a separate project so that the output in the SketchFlow player is isolated to a single story at a time.
The trouble is, since these are all for the same app, I end up generating the same sample data source in each project. That's creating a number of build warnings like so:
SampleData\DataThingieSampleData\DataThingieSampleData.xaml.cs(41,44):
warning CS0436:
The type 'Expression.Blend.SampleData.DataThingieSampleData.ItemCollection' in
'c:\Projects\SketchFlow_Wizards\Wizard_1\Wizard_1Screens\SampleData\DataThingieSampleData\DataThingieSampleData.xaml.cs'
conflicts with the imported type 'Expression.Blend.SampleData.DataThingieSampleData.ItemCollection' in
'c:\Projects\SketchFlow_Wizards\CustomControls\bin\Debug\CustomControls.dll'.
Using the type defined in
'c:\Projects\SketchFlow_Wizards\Wizard_1\Wizard_1Screens\SampleData\DataThingieSampleData\DataThingieSampleData.xaml.cs'.
Ideally, I would like to have one set of data sources, defined in my CustomControls project, that I can share across all the dependent wizard projects. When I try to set that up however, it converts the data source references to Object Data Store references and stops generating run-time sample data.
Is there a way to do this? Or am I stuck keeping the data sources project specific (and maybe unique-ifying the names to eliminate the warnings)?
Also, if there is a good answer, you can totally help out this guy too. ;)