I am trying to publish my project using MSBuild. I have been searching on the internet but can not forward at this stage. I am using below code
C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" "C:\Projects\Employee\Employee.csproj" /p:Configuration=Release /t:rebuild
This line successfully compile and deploy the project. But my web.config file is located under
obj\Release\TransformWebConfig\original
and my dlls located under
obj\Release\Package\PackageTmp
My question is how can I deploy it to a specific folder. Also I could not find organized information on the Internet with all the parameters and tutorials. Do you know where can I find?
Also I am new to MsBuild and Web Deployment. Other stackoverflow answers related to my question is higher level. Could you please explain more clearly?