Skip to content

Commit 9e4ee99

Browse files
authored
removing myget dependency (#9422)
1 parent 6a498f9 commit 9e4ee99

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

NuGet.config

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33
<packageSources>
44
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
55
<add key="AzureFunctionsTempStaging" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/AzureFunctionsTempStaging/nuget/v3/index.json" />
6-
<add key="azure_app_service" value="https://www.myget.org/F/azure-appservice/api/v2" />
7-
<add key="azure_app_service_staging" value="https://www.myget.org/F/azure-appservice-staging/api/v2" />
86
<add key="azure-appservice-test" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/azure-appservice-test%40Local/nuget/v3/index.json" />
9-
<add key="buildTools" value="https://www.myget.org/F/30de4ee06dd54956a82013fa17a3accb/" />
107
<add key="Microsoft.Azure.Functions.PowerShellWorker" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/Microsoft.Azure.Functions.PowerShellWorker/nuget/v3/index.json" />
118
<add key="AzureFunctionsRelease" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/AzureFunctionsRelease/nuget/v3/index.json" />
129
<add key="AzureFunctionsPreRelease" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/AzureFunctionsPreRelease/nuget/v3/index.json" />

test/WebJobs.Script.Tests.Integration/WebHostEndToEnd/EndToEndTestFixture.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ public abstract class EndToEndTestFixture : IAsyncLifetime
3838
private string _functionsWorkerRuntimeVersion;
3939
private bool _addTestSettings;
4040

41-
protected EndToEndTestFixture(string rootPath, string testId,
42-
string functionsWorkerRuntime,
43-
int workerProcessesCount = 1,
41+
protected EndToEndTestFixture(string rootPath, string testId,
42+
string functionsWorkerRuntime,
43+
int workerProcessesCount = 1,
4444
string functionsWorkerRuntimeVersion = null,
4545
bool addTestSettings = true)
4646
{
@@ -109,7 +109,7 @@ string GetDestPath(int counter)
109109
var extensionsToInstall = GetExtensionsToInstall();
110110
if (extensionsToInstall != null && extensionsToInstall.Length > 0)
111111
{
112-
TestFunctionHost.WriteNugetPackageSources(_copiedRootPath, "http://www.myget.org/F/azure-appservice/api/v2", "https://www.myget.org/F/azure-appservice-staging/api/v2", "https://api.nuget.org/v3/index.json");
112+
TestFunctionHost.WriteNugetPackageSources(_copiedRootPath, "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/AzureFunctionsPreRelease/nuget/v3/index.json", "https://api.nuget.org/v3/index.json");
113113
var options = new OptionsWrapper<ScriptJobHostOptions>(new ScriptJobHostOptions
114114
{
115115
RootScriptPath = _copiedRootPath

0 commit comments

Comments
 (0)