關於指令碼PowerShell的設計執行個體

來源:互聯網
上載者:User
這幾天對PS情有獨忠,被它的強大功能所希引,它可以快速部署,快速發布,將一些連帶的動作一次的完成,挺方便,類似於早期的bat檔案,也像linux平台的bash指令碼,但功能上,比前兩者都要強很多,下面我們看一下將某個解決方案下的所有項目一次publish的過程,我們使用ps指令碼來實現的。

# 作者:倉儲大叔# 功能:發布項目到指定的地方Param([string] $rootPath)$scriptPath = Split-Path $script:MyInvocation.MyCommand.PathWrite-Host "Current script directory is $scriptPath" -ForegroundColor Yellowif ([string]::IsNullOrEmpty($rootPath)) {    $rootPath = "$scriptPath\.."}Write-Host "Root path used is $rootPath" -ForegroundColor Yellow$projectPaths =     @{Path="$rootPath\src\LindCore.Manager";Prj="LindCore.Manager.csproj";Name="web"},    @{Path="$rootPath\src\LindCore.Test";Prj="LindCore.Test.csproj";Name="console"} $projectPaths | foreach {    $projectPath = $_.Path    $projectFile = $_.Prj    $name=$_.Name    # $outPath = $_.Path + "\obj\publish"$outPath = "d:\publish\"+$name$projectPathAndFile = "$projectPath\$projectFile"Write-Host "Deleting old publish files in $outPath" -ForegroundColor Yellow    remove-item -path $outPath -Force -Recurse -ErrorAction SilentlyContinue    Write-Host "Publishing $projectPath to $outPath" -ForegroundColor Yellow    dotnet restore $projectPathAndFile    dotnet build $projectPath    dotnet publish $projectPath -o $outPath}

注意:如果你只是把跨平台項目發到obj\publish檔案夾的話,那wwwroot這些檔案夾不會產生,而如果發到其它磁碟,將會產生這些靜態檔案,這點要注意!

跨平台項目,需要在project.json裡把運行時都加上,否則你的項目保能在當前平台運行

  "runtimes": {"win7-x64": {},"linux-x64": {},"osx-x64": {}  },

感謝各位對.net core的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.