Reputation: 47
Is it possible to build a .xap file from the command line like you would build a .cs file from csc.exe?
Upvotes: 2
Views: 782
Reputation: 11
You can also just invoke devenv from the visual studio command prompt that is installed as part of the SDK. MSDN has the relevant documentation.
Upvotes: 0
Reputation: 141678
You can use MSBuild to build a project or a solution. From the Visual Studio Command Prompt, change your working directory to where your Solution / Project is:
>MSBuild YourSolution.sln
And now it is built. You do need the Windows Phone 7 Development tools installed on the machine for this to work.
Upvotes: 7