標籤:cspro ase reg tools 通過 一個 rest cto 自動
通過使用ps加上msbuild可以方便的編譯你的.net應用程式,並且可以把它發布到你的磁碟上,部署非常方例!
我們在c盤添加一個hello網站,解決方案名是hello.sln,它的網站是hello.csproj,現在使用這個指令碼來產生這個網站和發布這個網站!
$ErrorActionPreference = ‘Stop‘# Environment helpers ------------------------------------Function Get-MsBuildPath() { $msBuildRegPath = "HKLM:\SOFTWARE\Microsoft\MSBuild\ToolsVersions\14.0" $msBuildPathRegItem = Get-ItemProperty $msBuildRegPath -Name "MSBuildToolsPath" $msBuildPath = $msBuildPathRegItem.MsBuildToolsPath + "msbuild.exe" return $msBuildPath}# Environment variables ----------------------------------$global_buildDirPath = Get-Location$global_msBuildPath = Get-MsBuildPath$global_solutionPath = "$global_buildDirPath"$global_solutionFilePath = "$global_solutionPath\hello.sln"$global_nugetPath = "$global_buildDirPath\tools\nuget.exe" # Install nuget packages ---------------------------------Function Install-SolutionPackages() { iex "$global_nugetPath restore $global_solutionFilePath"}# compileFunction Compile-Publish-Project() { iex -Command "& ‘$global_msBuildPath‘ ‘$project_path‘ /p:Configuration=Release /p:WebProjectOutputDir=C:\publish\hello /p:OutputPath=C:\publish\hello\bin"}Install-SolutionPackagesCompile-Publish-Project
最後產生的網站結果為
這個功能對於自動化部署非常有必要,大叔會對這塊內容做進一步的研究和最佳化!
謝謝!
PowerShell~發布你的mvc網站