Created
April 18, 2019 13:15
-
-
Save M-Yankov/dae90bc1072f5b2c205a331057188b13 to your computer and use it in GitHub Desktop.
Local File Publish with MS Build
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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