加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
update nuget package.ps1 617 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ozgur Ozcitak 提交于 2018-12-14 14:01 . Add script for publishing docs.
Param(
[Parameter(Mandatory=$true, HelpMessage="NuGet API Key")][String]$apikey
)
# download latest nuget.exe
$nugeturl = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe"
$nugetexe = "$($env:temp)\nuget.exe"
$client = new-object System.Net.WebClient
$client.DownloadFile($nugeturl, $nugetexe)
# create the nuspec file for the "Release" build
Invoke-Expression "$($nugetexe) Pack '.\ImageListView\ImageListView.csproj' -Properties Configuration=Release"
Invoke-Expression "$($nugetexe) Push .\*.nupkg -Source https://www.nuget.org -ApiKey $($apikey) -Verbosity Detailed"
Remove-Item ".\*.nupkg"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化