VS2010 Web Publish command line version of File System deploy

Ok, finally figured this out. The command line you need is: msbuild path/to/your/webdirectory/YourWeb.csproj /p:Configuration=Debug;DeployOnBuild=True;PackageAsSingleFile=False You can change where the project outputs to by adding a property of outdir=c:\wherever\ in the /p: section. This will create the output at: path/to/your/webdirectory/obj/Debug/Package/PackageTmp/ You can then copy those files from the above directory using whatever method you’d like. I’ve … Read more