Skip to main content
Home Forums Silverlight Programming Programming with .NET - General Build Silverlight Visual Studio Project from a command line
4 replies. Latest Post by Ludo35 on January 13, 2009.
(0)
Ludo35
Member
16 points
53 Posts
12-31-2008 4:19 AM |
Hello,
I have created a basic Silverlight project in Visual Studio. I am looking for a way to build this project from a command line.
Please let me know which command line I should use to be able to build my Visual Studio solution.
Thanks in advance,
Ludo
Silverli...
124 points
23 Posts
12-31-2008 4:58 AM |
You can try LocBaml.exe command to compile Silverlight project
Please refer this site URL http://www.guysmithferrier.com/Downloads/I18NWPF.pdf for more detail.
mahesh.p...
134 points
59 Posts
01-02-2009 4:07 AM |
Hi,
You can make use of following for the same
msbuild "<Path of silverlight project file i.e. Proj>" /Property:OutDir="<Path of the output file>"
Thanks & Regards,
Mahesh Panhale
01-02-2009 4:08 AM |
OutDir is path of folder where you want output to be placed .
01-13-2009 9:04 AM |
Cool, it worked! Thanks!