This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 12 files changed +14
-15
lines changed
performance/linkbench/assets/MusicStore Expand file tree Collapse file tree 12 files changed +14
-15
lines changed Original file line number Diff line number Diff line change 504
504
"allowOverride" : true
505
505
},
506
506
"MyGetFeedUrl" : {
507
- "value" : " https://dotnet.myget.org/F/dotnet-core-test/api/v2/package " ,
507
+ "value" : " https://pkgs.dev.azure.com/dnceng/public/_packaging/myget-legacy/nuget/v3/index.json " ,
508
508
"allowOverride" : true
509
509
},
510
510
"MyGetApiKey" : {
Original file line number Diff line number Diff line change 4
4
<PropertyGroup >
5
5
<RestoreSources Condition =" '$(DotNetBuildOffline)' != 'true'" >
6
6
https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json;
7
- https://dotnet.myget.org/F/ dotnet-core/api/v3 /index.json;
7
+ https://dotnetmygetlegacy.blob.core.windows.net/ dotnet-core/index.json;
8
8
https://api.nuget.org/v3/index.json;
9
9
$(RestoreSources)
10
10
</RestoreSources >
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ if [%PACKAGES_DIR%]==[] set PACKAGES_DIR=%~dp0packages\
6
6
if [%TOOLRUNTIME_DIR% ]== [] set TOOLRUNTIME_DIR = %~dp0 Tools
7
7
set DOTNET_PATH = %TOOLRUNTIME_DIR% \dotnetcli\
8
8
if [%DOTNET_CMD% ]== [] set DOTNET_CMD = %DOTNET_PATH% dotnet.exe
9
- if [%BUILDTOOLS_SOURCE% ]== [] set BUILDTOOLS_SOURCE = https://dotnet.myget.org/F/dotnet-buildtools/api /v3/index.json
9
+ if [%BUILDTOOLS_SOURCE% ]== [] set BUILDTOOLS_SOURCE = https://pkgs.dev.azure.com/dnceng/public/_packaging/myget-legacy/nuget /v3/index.json
10
10
set /P BUILDTOOLS_VERSION = < " %~dp0 BuildToolsVersion.txt"
11
11
set BUILD_TOOLS_PATH = %PACKAGES_DIR% Microsoft.DotNet.BuildTools\%BUILDTOOLS_VERSION% \lib\
12
12
set INIT_TOOLS_RESTORE_PROJECT = %~dp0 init-tools.msbuild
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ __PACKAGES_DIR="$__scriptpath/packages"
6
6
__TOOLRUNTIME_DIR=" $__scriptpath /Tools"
7
7
__DOTNET_PATH=" $__TOOLRUNTIME_DIR /dotnetcli"
8
8
__DOTNET_CMD=" $__DOTNET_PATH /dotnet"
9
- if [ -z " ${__BUILDTOOLS_SOURCE:- } " ]; then __BUILDTOOLS_SOURCE=https://dotnet.myget.org/F/dotnet-buildtools/api /v3/index.json; fi
9
+ if [ -z " ${__BUILDTOOLS_SOURCE:- } " ]; then __BUILDTOOLS_SOURCE=https://pkgs.dev.azure.com/dnceng/public/_packaging/myget-legacy/nuget /v3/index.json; fi
10
10
export __BUILDTOOLS_USE_CSPROJ=true
11
11
__BUILD_TOOLS_PACKAGE_VERSION=$( cat " $__scriptpath /BuildToolsVersion.txt" | sed ' s/\r$//' ) # remove CR if mounted repo on Windows drive
12
12
__DOTNET_TOOLS_VERSION=$( cat " $__scriptpath /DotnetCLIVersion.txt" | sed ' s/\r$//' ) # remove CR if mounted repo on Windows drive
Original file line number Diff line number Diff line change 5
5
</packageRestore >
6
6
<packageSources >
7
7
<clear />
8
- <add key =" myget.org dotnet-core" value =" https://dotnet.myget.org/F/ dotnet-core/api/v3 /index.json" />
8
+ <add key =" myget.org dotnet-core" value =" https://dotnetmygetlegacy.blob.core.windows.net/ dotnet-core/index.json" />
9
9
<add key =" nuget.org" value =" https://www.nuget.org/api/v2/" />
10
10
</packageSources >
11
11
<activePackageSource >
Original file line number Diff line number Diff line change 95
95
<!-- Add test-specific package restore sources. -->
96
96
<PropertyGroup >
97
97
<RestoreSources Condition =" '$(DotNetBuildOffline)' != 'true'" >
98
- https://dotnet.myget.org/F/dotnet-corefxlab/api /v3/index.json;
98
+ https://pkgs.dev.azure.com/dnceng/public/_packaging/myget-legacy/nuget /v3/index.json;
99
99
$(RestoreSources)
100
100
</RestoreSources >
101
101
<RestoreSources Condition =" '$(IntermediateAzureFeed)' != ''" >
Original file line number Diff line number Diff line change @@ -81,9 +81,8 @@ if [ $throughput -eq 1 ]; then
81
81
mkdir Microsoft.Benchview.ThroughputBenchmarks.x64.Windows_NT
82
82
cd Microsoft.Benchview.ThroughputBenchmarks.x64.Windows_NT
83
83
84
- curl -OL https://dotnet.myget.org/F/dotnet-core/api/v2/package/Microsoft.Benchview.ThroughputBenchmarks.x64.Windows_NT/1.0.0
85
- mv 1.0.0 1.0.0.zip
86
- unzip -q 1.0.0.zip
84
+ curl -OL https://dotnetmygetlegacy.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.benchview.throughputbenchmarks.x64.windows_nt/1.0.0/microsoft.benchview.throughputbenchmarks.x64.windows_nt.1.0.0.nupkg
85
+ unzip -q microsoft.benchview.throughputbenchmarks.x64.windows_nt.1.0.0.nupkg
87
86
fi
88
87
89
88
else
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ REM ============================================================================
74
74
75
75
REM Download the package
76
76
echo Downloading CoreDisTools package
77
- set DOTNETCMD = " %__DotNetCmd% " restore " %__CsprojPath% " --source https://dotnet.myget.org/F/ dotnet-core/ --packages " %__PackageDir% "
77
+ set DOTNETCMD = " %__DotNetCmd% " restore " %__CsprojPath% " --source https://dotnetmygetlegacy.blob.core.windows.net/ dotnet-core/index.json --packages " %__PackageDir% "
78
78
echo %DOTNETCMD%
79
79
call %DOTNETCMD%
80
80
if errorlevel 1 goto Fail
Original file line number Diff line number Diff line change 109
109
110
110
# Download the package
111
111
echo Downloading CoreDisTools package
112
- bash -c -x " $dotnetCmd restore $csprojPath --source https://dotnet.myget.org/F/ dotnet-core/ --packages $packageDir "
112
+ bash -c -x " $dotnetCmd restore $csprojPath --source https://dotnetmygetlegacy.blob.core.windows.net/ dotnet-core/index.json --packages $packageDir "
113
113
if [ $? -ne 0 ]
114
114
then
115
115
exit_with_error 1 " Failed to restore the package"
Original file line number Diff line number Diff line change 5
5
</packageRestore >
6
6
<packageSources >
7
7
<clear />
8
- <add key =" myget.org dotnet-core" value =" https://dotnet.myget.org/F/ dotnet-core/api/v3 /index.json" />
8
+ <add key =" myget.org dotnet-core" value =" https://dotnetmygetlegacy.blob.core.windows.net/ dotnet-core/index.json" />
9
9
<add key =" myget.org nugetbuild" value =" https://www.myget.org/F/nugetbuild/api/v3/index.json" />
10
10
<add key =" nuget.org" value =" https://api.nuget.org/v3/index.json" protocolVersion =" 3" />
11
11
</packageSources >
You can’t perform that action at this time.
0 commit comments