Skip to content

Commit f138f38

Browse files
authored
Download nuget v3.5.0 from nuget.org (#10188)
1 parent bb5abe9 commit f138f38

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

.gitignore

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
bin
22
obj
3+
out
34
csx
45
.vs
6+
.vscode
7+
.DS_Store
58
edge
69
Publish
710

@@ -11,16 +14,21 @@ Publish
1114
*.Cache
1215
msbuild.log
1316
package-lock.json
14-
.DS_Store
17+
**/Properties/launchSettings.json
18+
**/project.assets.json
1519

1620
/packages
17-
/TestResults
21+
tools/ExtensionsMetadataGenerator/packages
22+
TestResults/
1823

1924
/tools/NuGet.exe
2025
/node_modules
2126
/.output
27+
/buildoutput
28+
/tools/ExtensionsMetadataGenerator/src/ExtensionsMetadataGenerator/runtimeassemblies.txt
29+
/tools/ExtensionsMetadataGenerator/test/ExtensionsMetadataGeneratorTests/runtimeAssemblies.txt
2230

23-
src/WebJobs.Script.WebHost/Properties/launchSettings.json
24-
25-
# ignore generated grpc code from core branch
26-
src/WebJobs.Script.Grpc/Messages
31+
local.settings.json
32+
*.binlog
33+
pp.xml
34+
BenchmarkDotNet.Artifacts/

WebJobs.Script.proj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,9 @@
105105
</Target>
106106

107107
<Target Name="DownloadRuntimeNugetClient">
108+
<!-- v3.5.0 is the current nuget.exe version deployed with functions v1. Keeping it at that version to minimize churn. -->
108109
<Message Text="Downloading runtime NuGet client..." Importance="Normal" />
109-
<DownloadNuGet OutputFileName="$(FunctionsSiteExtensionPath)\bin\tools\nuget.exe" MinimumVersion="3.3.0" DownloadUrl="https://azfunc.blob.core.windows.net/public/nuget.exe" />
110+
<DownloadNuGet OutputFileName="$(FunctionsSiteExtensionPath)\bin\tools\nuget.exe" MinimumVersion="3.3.0" DownloadUrl="https://dist.nuget.org/win-x86-commandline/v3.5.0/nuget.exe" />
110111
</Target>
111112

112113
<Target Name="PackageScriptHost" DependsOnTargets="Build;DownloadRuntimeNugetClient">

0 commit comments

Comments
 (0)