Skip to content

Instantly share code, notes, and snippets.

@M-Yankov
Created April 18, 2019 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save M-Yankov/dae90bc1072f5b2c205a331057188b13 to your computer and use it in GitHub Desktop.
Save M-Yankov/dae90bc1072f5b2c205a331057188b13 to your computer and use it in GitHub Desktop.
Local File Publish with MS Build
msbuild ProjectFile.csproj /p:Configuration=Release ^
/p:Platform=AnyCPU ^
/t:WebPublish ^
/p:WebPublishMethod=FileSystem ^
/p:DeleteExistingFiles=True ^
/p:publishUrl=c:\output
msbuild Solution.sln /p:Configuration=Release ^
/p:DeployOnBuild=True ^
/p:DeployDefaultTarget=WebPublish ^
/p:WebPublishMethod=FileSystem ^
/p:DeleteExistingFiles=True ^
/p:publishUrl=c:\output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment