I hate IDEs, is there any way to use Make to build Metro apps from source code?
|
|
MSBuild can natively build Visual Studio projects (*.csproj) or code files directly:
It's installed with Visual Studio and/or the .NET Framework, and can be found (depending on your framework version) at:
I also just double checked on our Windows 2008 web server (which does not have Visual Studio installed, but does have .NET 4 installed) and it also has MSBuild.exe, so you shouldn't even need VS. I believe you'll need to run the Publish target to actually create the appx package once the project is built:
MSBuild is extremely powerful and can be extended with .NET code, and comes with tasks designed to do various things. There's tons of tutorials online, but this one might be great to get started. |
|||||||||
|
see this article on MSDN, but I have to warn you... last time I tried to get it signed without an IDE gave me lots of headaches. |
|||
|
|