2

Is it possible to build silverlight application in on-demand manner. I have lot of silverlight applications to be shipped. I would like to ship the project files alone. Based on some user interaction, I would like to generate the XAP.

Prince Ashitaka
  • 8,623
  • 12
  • 48
  • 71
  • Are you sure you need to be building a Xap? Do you really have the need to compile code dynamically? If so how unique is that code? – AnthonyWJones Mar 18 '11 at 08:24
  • It's like samples I want to ship. Previously, I was shipping pre-built sample along with xap. But, number of sample count grew very large. So, I want to compile them, when a specific action occurs. So, I can reduce my setup size. I won't be able to let the user to compile the project sample due to some restriction policy. So, the best case so far I think of is on-demand creation of XAP. Kindly advice. – Prince Ashitaka Mar 18 '11 at 09:36

1 Answers1

1

You thought about using a NANT script to compile your project and grab the output xap file?

Chris Haines
  • 628
  • 1
  • 6
  • 14