this is the situation:
I have a solution which contains two projects:
- WPF project
- 'Old' C#-project, containing windows forms
App app = new App();
app.InitializeComponent();
app.Run();
but then I get this error:
Could not load type 'WPFTest.App' from assembly 'WPTest, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.
Any ideas on what I've forgotten
Thanks in advance,
Frances

Calling WPF project from C# .Net 2.0-project
eschumac