0 Star 0 Fork 16

刘双荣/HttpAgent

forked from dotNET China/HttpAgent 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nuget-push.ps1 613 Bytes
一键复制 编辑 原始数据 按行查看 历史
百小僧 提交于 2024-10-10 18:24 . 😊 初始化 HttpAgent 仓库代码
Param(
[string] $apikey
)
cd .\src\nupkgs;
$nupkgs = Get-ChildItem -Recurse -Filter "*.nupkg";
for ($i = 0; $i -le $nupkgs.Count - 1; $i++){
$item = $nupkgs[$i];
$nupkg = $item.FullName;
$snupkg = $nupkg.Replace(".nupkg", ".snupkg");
Write-Output "-----------------";
$nupkg;
dotnet nuget push $nupkg --skip-duplicate --api-key $apikey --source https://api.nuget.org/v3/index.json;
dotnet nuget push $snupkg --skip-duplicate --api-key $apikey --source https://api.nuget.org/v3/index.json;
Write-Output "-----------------";
}
cd ../../;
Write-Warning "Successfully.";
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/lewbidragon/HttpAgent.git
git@gitee.com:lewbidragon/HttpAgent.git
lewbidragon
HttpAgent
HttpAgent
master

搜索帮助