I want to publish an ASP.NETFramework v4.6.1 project to a local folder.
No zip. No profile.
Just a publication like this:
msbuild MySolution.sln /t:MyProject /p:Configuration=DEBUG /p:publishDir=".ToFolder" /p:WebPublishMethod=FileSystem
It compiles well but I get nothing in the destination folder.
I forgot an instruction? The documentation doesnt help me.
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
There are a couple extra parameters that should get this going. In particular, the publishdir needs to change to OutDir, but the other ones are probably necessary as well.
/p:DeployOnbuild=True /p:GenerateProjectSpecificOutputFolder=true /p:OutDir=.ToFolder /p:UseWPP_CopyWebApplication=true /p:PipelineDependsOnBuild=false
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0