Browse Source

Fix nuget source.

pull/2381/head 1.1.0
Halil İbrahim Kalkan 6 years ago
parent
commit
3b74291069
  1. 2
      nupkg/push_packages.ps1

2
nupkg/push_packages.ps1

@ -7,7 +7,7 @@ $version = $commonPropsXml.Project.PropertyGroup.Version
# Publish all packages
foreach($project in $projects) {
$projectName = $project.Substring($project.LastIndexOf("/") + 1)
& dotnet nuget push ($projectName + "." + $version + ".nupkg") -s "https://nuget.abp.io/API_KEY/v3/index.json"
& dotnet nuget push ($projectName + "." + $version + ".nupkg") -s https://api.nuget.org/v3/index.json --api-key "API_KEY"
}
# Go back to the pack folder

Loading…
Cancel
Save