I created a Silverlight project in VS 2k8 and chose the option to add a website to the solution. Within the website there is a ClientBin folder that holds the .xap file that contains the Silverlight content from your Silverlight class library (sort of a .dll I'm thinking). The Silverlight class library starts off with a single xaml file (Page.xaml) that you can add your Silverlight controls to. When doing a build this content is what's added to the .xap file in your website. You then reference this .xap file in your aspx markup to display your Silverlight content. Here's my problem:
I added a second xaml file to the project but I'm trying to figure out how to display it's content in the website. After adding the second xaml file and doing a build I still only get one .xap file in the ClientBin folder and the content from both pages shows up where I'm referencing it in my aspx markup.
Any idea what the correct process is?