We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91cc124 commit 142e80dCopy full SHA for 142e80d
1 file changed
tools/ManageGeneratedModule.ps1
@@ -47,7 +47,7 @@ foreach ($Package in $NugetPackagesToRemove) {
47
# Add nuget packages from generate modules.
48
foreach ($Package in $NugetPackagesToAdd) {
49
Write-Debug "Executing: dotnet add $ModuleCsProj package $Package"
50
- dotnet add $ModuleCsProj package $Package -s https://api.nuget.org/v3/index.json | Out-Null
+ dotnet add $ModuleCsProj package $Package | Out-Null
51
if ($LastExitCode) {
52
Write-Error "Failed to execute: dotnet add $ModuleCsProj package $Package"
53
}
0 commit comments