Reputation: 29
I am creating a Silverlight application using .Net 4.0 and integrating it into an ASP.net project that created in .Net 3.5.
Whenever I make a change in the Silverlight project the changes are not reflected into the ASP.net project
Upvotes: 0
Views: 255
Reputation: 93601
You need to ensure your Silverlight app and the website are connected
Adding it to the solution is not enough. You need to make a Silverlight relationship between the website and your Silverlight application.
Properties
.Silverlight Applications
tab on the left sideAdd...
Use an existing Silverlight project in the solution
checked and select the project you want to add from the Project
dropdown.Add a test page that references the control
checked if you want a separate test page for your application.Add
and you are done.The website will now build your Silverlight application and include the output Xap file in its ClientBin folder.
Upvotes: 1