Skip to content

Instantly share code, notes, and snippets.

@sakapon
Created October 13, 2015 13:55
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 sakapon/e6301f017108be514335 to your computer and use it in GitHub Desktop.
Save sakapon/e6301f017108be514335 to your computer and use it in GitHub Desktop.
BuildSample / Release Build (PowerShell)
$msbuild = "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe"
$slnFilePath = "..\BuildSample.sln"
Invoke-Expression ([string]::Format("{0} {1} /p:Configuration=Release /t:Clean", $msbuild, $slnFilePath))
Invoke-Expression ([string]::Format("{0} {1} /p:Configuration=Release /t:Rebuild", $msbuild, $slnFilePath))
.\CreateZipForAssembly.ps1 ..\EmptyConsole\bin\Release\EmptyConsole.exe ..\Downloads
explorer ..\Downloads
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment